01: package de.webman.content.attributs;
02:
03: import com.teamkonzept.lib.TKHashtable;
04:
05: /**
06: zu implementierendes Interface für die funktionalität von
07: Attributen
08:
09: * @author $Author: sebastian $
10: * @version $Revision: 1.2 $
11: */
12:
13: public interface AttributeInterface {
14: /** speichern eines Attributes @see AttributeHandler
15: @param attr @see Attribute */
16:
17: public void putAttribute(Attribute attr);
18:
19: /** gibt zurück ob der Content aufgrund der Attribute generierbar ist
20: @param options eventuelle generator-parameter */
21:
22: public boolean isGeneratable(TKHashtable options);
23: }
|