org.peace_tools.core
Class Version

java.lang.Object
  extended by org.peace_tools.core.Version

public class Version
extends java.lang.Object

This is a non-instantiable class that serves as a central point to hold various version, copyright, and lisence information associated with PEACE and its GUI.


Field Summary
static java.lang.String COPYRIGHT
          A simple copyright message.
static java.lang.String DISCLAIMER
          The standard disclaimer message.
static java.lang.String GUI_VERSION
          The current version information of the software.
 
Constructor Summary
private Version()
          Since this class is not meant to be instantiated, its constructor has been made private.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

GUI_VERSION

public static final java.lang.String GUI_VERSION
The current version information of the software. This constant provides a convenient way to track and log the version information of the software for tracking version changes.

See Also:
Constant Field Values

COPYRIGHT

public static final java.lang.String COPYRIGHT
A simple copyright message. This constant provides a convenient way to display a consistent copyright message in the software.

See Also:
Constant Field Values

DISCLAIMER

public static final java.lang.String DISCLAIMER
The standard disclaimer message. This define aims to centralize the disclaimer for the software and keeps the code clutter to a minimum in other source files.

See Also:
Constant Field Values
Constructor Detail

Version

private Version()
Since this class is not meant to be instantiated, its constructor has been made private.