docs/DesignPatterns

view code/composite-icomponent.java @ 14:dc88dad3b5af

changes to vorstellung; modified Makefile
author meillo@marmaro.de
date Thu, 21 Jun 2007 17:53:50 +0200
parents
children
line source
1 interface IComponent {
2 Collection getChildren();
3 boolean addComponent(IComponent c);
4 boolean removeComponent(IComponent c);
5 }