KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > content > attributs > AttributeInterface


1 package de.webman.content.attributs;
2
3 import com.teamkonzept.lib.TKHashtable;
4
5 /**
6     zu implementierendes Interface für die funktionalität von
7     Attributen
8     
9  * @author $Author: sebastian $
10  * @version $Revision: 1.2 $
11 */

12
13 public interface AttributeInterface
14 {
15     /** speichern eines Attributes @see AttributeHandler
16     @param attr @see Attribute */

17     
18     public void putAttribute(Attribute attr);
19         
20     /** gibt zurück ob der Content aufgrund der Attribute generierbar ist
21     @param options eventuelle generator-parameter */

22     
23     public boolean isGeneratable(TKHashtable options);
24 }
Popular Tags