Mercurial > 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 | 20c0116dcb97 |
children |
line wrap: on
line source
interface IComponent { Collection getChildren(); boolean addComponent(IComponent c); boolean removeComponent(IComponent c); }