| |
|
| java.lang.Object org.directwebremoting.util.VersionUtil
VersionUtil | public class VersionUtil (Code) | | Interface to the system version info file.
DWR version numbers are of the form "Version 1.2.3.3128[.beta]", where:
- 1 is the major release number. Changes in major version number indicate
significant enhancements in functionality
- 2 is the minor release number. Changes in minor version number indicate
less significant changes in functionality
- 3 is the revision release number. Changes here typically indicate bug
fixes only
- 3128 is the build number. This number increments for each build
- .beta is a release title that is generally only used for non production
releases to indicate the purpose/quality of the release
- The label is these strings concatenated
author: Joe Walker [joe at getahead dot ltd dot uk] |
getBuild | public static int getBuild()(Code) | | The build number of this release |
getLabel | public static String getLabel()(Code) | | The full version string |
getMajor | public static int getMajor()(Code) | | The major version number of this release |
getMinor | public static int getMinor()(Code) | | The minor version number of this release |
getRevision | public static int getRevision()(Code) | | The revision version number of this release |
getSourceControlInfo | public static String getSourceControlInfo()(Code) | | Fish the version number out of the dwr.properties file.
The current version number. |
getTitle | public static String getTitle()(Code) | | The optional title of this release |
|
|
|