01: /* Version.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: May 28, 2007 3:06:45 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: /**
23: * The version of the ZK MIL component set.
24: * {@link #UID} must be the same as the version specified in lang.xml
25: * and config.xml.
26: *
27: * @author henrichen
28: */
29: public class Version {
30: /** Returns the version UID.
31: */
32: public static final String UID = "0.8.7";
33: }
|