view code/composite-icomponent.java @ 36:f03413250b39 Ausarbeitung final

some typos and cleanups
author meillo@marmaro.de
date Sat, 11 Aug 2007 22:42:24 +0200
parents 20c0116dcb97
children
line wrap: on
line source

    interface IComponent {
            Collection getChildren();
            boolean addComponent(IComponent c);     
            boolean removeComponent(IComponent c);
    }