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.SComponent;
16: import org.wings.SFrame;
17:
18: public interface FrameCG extends RootContainerCG {
19:
20: public Update getAddHeaderUpdate(SFrame frame, Object header);
21:
22: public Update getAddHeaderUpdate(SFrame frame, int index,
23: Object header);
24:
25: public Update getRemoveHeaderUpdate(SFrame frame, Object header);
26:
27: public Update getEpochUpdate(SFrame frame, String epoch);
28:
29: public Update getFocusUpdate(SFrame frame, SComponent focus);
30:
31: public Update getUpdateEnabledUpdate(SFrame frame, boolean enabled);
32:
33: }
|