docs/DesignPatterns

view code/composite-icomponent.java @ 16:0c8352c1abc9

small changes
author meillo@marmaro.de
date Sun, 24 Jun 2007 23:34:33 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }