package electrosphere.renderer.ui; import java.util.List; public interface ContainerElement extends Element { public void addChild(Element child); public List getChildren(); public void removeChild(Element child); }