01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.plaf;
14:
15: import org.wings.SContainer;
16: import org.wings.SRootContainer;
17: import org.wings.SWindow;
18:
19: /**
20: * <code>RootContainerCG</code>.
21: * <p/>
22: * User: raedler
23: * Date: Oct 4, 2007
24: * Time: 5:28:10 PM
25: *
26: * @author raedler
27: * @version $Id
28: */
29: public interface RootContainerCG extends ContainerCG {
30: public Update getAddWindowUpdate(SContainer container,
31: SWindow window);
32:
33: public Update getRemoveWindowUpdate(SContainer container,
34: SWindow window);
35: }
|