1 package org.objectweb.kilim.description; 2 3 import java.util.Iterator ; 4 5 import org.objectweb.kilim.KilimException; 6 7 11 public interface TemplateElement extends Cloneable { 12 13 17 TemplateDescription getContainingTemplate(); 18 19 24 void setContainingTemplate(TemplateDescription aTemplate) throws KilimException; 25 26 30 Object clone(); 31 32 36 Iterator getTemplateDefHierarchy(); 37 } 38 | Popular Tags |