docs/DesignPatterns

annotate code/composite-icomponent.java @ 10:3f937af7e13e

added Erweiterungen; commented things out; other small things
author meillo@marmaro.de
date Tue, 19 Jun 2007 17:44:28 +0200
parents
children
rev   line source
meillo@7 1 interface IComponent {
meillo@7 2 Collection getChildren();
meillo@7 3 boolean addComponent(IComponent c);
meillo@7 4 boolean removeComponent(IComponent c);
meillo@7 5 }