01: /* Version.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Tue Jul 25 10:11:32 2006, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2006 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: }}IS_RIGHT
16: */
17: package org.zkoss.zhtml;
18:
19: /**
20: * The version of the ZK ZHTML component set.
21: * {@link #UID} must be the same as the version specified in lang.xml
22: * and config.xml.
23: *
24: * @author tomyeh
25: */
26: public class Version {
27: /** Returns the version UID.
28: */
29: public static final String UID = "3.0.3";
30: }
|