Mercurial > docs > DesignPatterns
view code/composite-icomponent.java @ 35:05f432307ba2
trivial change
author | meillo@marmaro.de |
---|---|
date | Sat, 11 Aug 2007 15:40:50 +0200 |
parents | 20c0116dcb97 |
children |
line wrap: on
line source
interface IComponent { Collection getChildren(); boolean addComponent(IComponent c); boolean removeComponent(IComponent c); }