01: /* Attributes.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Tue Jan 22 12:51:42 2008, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2008 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: /**
22: * Common attributes used for implementation.
23: *
24: * @author tomyeh
25: * @since 3.0.2
26: */
27: public class Attributes {
28: /** Indicates the component being render shall generate z.skipsib.
29: */
30: public static final String SKIP_SIBLING = "org.zkoss.zul.SkipSibling";
31: /** It is used to check the striping state of Gird or Listbox.
32: * @since 3.0.3
33: */
34: public static final String STRIPE_STATE = "org.zkoss.zul.StripeState";
35: }
|