comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultFacet.java @ 67:74257b95567b

Added CollectionItems and Facets and replaced Artifact references in Collection with CollectionItems. flys-client/trunk@1567 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 25 Mar 2011 09:19:29 +0000
parents
children 5277f46a63c2
comparison
equal deleted inserted replaced
66:a361ce81abcf 67:74257b95567b
1 package de.intevation.flys.client.shared.model;
2
3
4 /**
5 * The default implementation of a Facet.
6 *
7 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
8 */
9 public class DefaultFacet implements Facet {
10
11 /** The name of the facet.*/
12 protected String name;
13
14
15 /**
16 * An empty constructor.
17 */
18 public DefaultFacet() {
19 }
20
21
22 /**
23 * The default constructor to create new DefaultFacets.
24 *
25 * @param name The name of the facet.
26 */
27 public DefaultFacet(String name) {
28 this.name = name;
29 }
30
31
32 public String getName() {
33 return name;
34 }
35 }
36 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org