docs/DesignPatterns

view code/composite-icomponent.java @ 34:b2cefbd90180

some redesign; new content for summary and appendix
author meillo@marmaro.de
date Sat, 11 Aug 2007 12:49:00 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }