01: /* Menuseparator.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Thu Sep 22 10:59:00 2005, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2005 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: package org.zkoss.zul;
20:
21: import org.zkoss.zul.impl.XulElement;
22:
23: /**
24: * Used to create a separator between menu items.
25: *
26: * @author tomyeh
27: */
28: public class Menuseparator extends XulElement {
29: //-- Component --//
30: /** Not childable. */
31: public boolean isChildable() {
32: return false;
33: }
34: }
|