docs/DesignPatterns

view code/composite-icomponent.java @ 23:e206112b4afe

added zusammenfassung to einfuehrung
author meillo@marmaro.de
date Tue, 26 Jun 2007 22:04:19 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }