docs/DesignPatterns

view code/composite-icomponent.java @ 11:a7ab86cddfad

added other parts but with few content yet
author meillo@marmaro.de
date Thu, 21 Jun 2007 08:23:04 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }