Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/state/DefaultFacet.java @ 286:715bdf990739
Made XMLUtils.toString(Document) static.
artifacts/trunk@2248 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 27 Jun 2011 10:20:27 +0000 |
parents | 7c33cac15134 |
children | e5bc48dc3ec3 |
line wrap: on
line source
package de.intevation.artifactdatabase.state; import de.intevation.artifacts.Artifact; import de.intevation.artifacts.CallContext; /** * The default implementation of a Facet. * * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class DefaultFacet implements Facet { /** The index of this facet.*/ protected int index; /** The name of this facet.*/ protected String name; /** The description of this facet.*/ protected String description; /** * The default constructor to create new Facet objects. * * @param name The name of this new facet. * @param description The description of this new facet. */ public DefaultFacet(String name, String description) { this(0, name, description); } /** * The default constructor to create new Facet objects. * * @param index The index of this new facet. * @param name The name of this new facet. * @param description The description of this new facet. */ public DefaultFacet(int index, String name, String description) { this.index = index; this.name = name; this.description = description; } public int getIndex() { return index; } public String getName() { return name; } public String getDescription() { return description; } public Object getData(Artifact artifact, CallContext context) { return null; } public String toString() { return new StringBuilder("name = '") .append(name).append("', index = ") .append(index).append(", description = '") .append(description).append("'") .toString(); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :