docs/DesignPatterns

view code/composite-icomponent.java @ 25:e7ac382e4a20

added content to weiterePatterns
author meillo@marmaro.de
date Wed, 27 Jun 2007 11:16:43 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }