01: /* Version.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Tue Aug 28 12:24:21 2007, Created by tomyeh
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: package org.zkoss.zml;
20:
21: /**
22: * The version of the ZK XML component set.
23: * {@link #UID} must be the same as the version specified in lang.xml
24: * and config.xml.
25: *
26: * @author tomyeh
27: */
28: public class Version {
29: /** Returns the version UID.
30: */
31: public static final String UID = "3.0.3";
32: }
|