1 18 19 package org.objectweb.kilim.model; 20 21 import java.util.Iterator ; 22 23 import org.objectweb.kilim.KilimException; 24 25 38 public interface ContainerElement extends ComponentElement { 39 43 boolean isInitialized(); 44 45 48 void setInitialized(); 49 50 55 Factory getFactory(); 56 57 61 boolean isComponent(); 62 63 67 boolean isSlot(); 68 69 73 Iterator getInterfaces(); 74 75 81 ComponentInterface getInterface(String aName) throws KilimException; 82 83 88 void addInterface(ComponentInterface aInterface) throws KilimException; 89 90 95 void removeInterface(ComponentInterface aElement) throws KilimException; 96 } | Popular Tags |