ingo@226: package de.intevation.artifactdatabase.state; ingo@226: ingo@226: ingo@226: /** ingo@226: * @author Ingo Weinzierl ingo@226: */ ingo@226: public interface Facet { ingo@226: ingo@226: /** ingo@226: * Returns the name of this facet. ingo@226: * ingo@226: * @return the name of this facet. ingo@226: */ ingo@226: String getName(); ingo@226: ingo@226: ingo@226: /** ingo@226: * Returns the description of this facet. ingo@226: * ingo@226: * @return the description of this facet. ingo@226: */ ingo@226: String getDescription(); ingo@226: } ingo@226: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :