01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/Version.java,v 1.1 2005/04/20 22:20:26 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is the Java 3D(tm) Scene Graph Editor.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18:
19: /**
20: * Build version info for J3dEdit
21: */package org.jdesktop.j3dedit;
22:
23: /**
24: * Version information for the editor.
25: * The version information is added by the
26: * build processes for the daily builds.
27: *
28: * @author Paul Byrne
29: * @version $Id: Version.java,v 1.1 2005/04/20 22:20:26 paulby Exp $
30: */
31: public class Version {
32:
33: public final static String version = "";
34: }
|