01: /* Frame.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: May 22, 2007 6:06:11 PM, Created by henrichen
10: }}IS_NOTE
11:
12: Copyright (C) 2007 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19:
20: package org.zkoss.mil;
21:
22: import org.zkoss.zk.ui.IdSpace;
23:
24: /**
25: * A generic Frame.
26: *
27: * <p>A Frame is an independent ID space (by implementing {@link IdSpace}).
28: * It means a window and all its descendants forms a ID space and
29: * the ID of each of them is unique in this space.
30: * You could retrieve any of them in this space by calling {@link #getFellow}.</p>
31: *
32: * @author henrichen
33: */
34: public class Frame extends Displayable implements Screen, IdSpace {
35: private static final long serialVersionUID = 200705221824L;
36: }
|