docs/DesignPatterns

view code/composite-icomponent.java @ 17:6a63cd1ca3d8

updated rundels content
author meillo@marmaro.de
date Mon, 25 Jun 2007 21:30:53 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }