Interface COM.tolstoy.jconfig.VersionInfo
All Packages Class Hierarchy This Package Previous Next Index
Interface COM.tolstoy.jconfig.VersionInfo
- public interface VersionInfo
- extends Object
Represents version information about an application.
-
copyrightString
-
-
dumpInfo(PrintStream, String)
- Writes information about this object to the indicated PrintStream.
-
getCopyrightNotice()
- Returns the copyright notice.
-
getDescription()
- Returns the application description.
-
getMajorVersion()
- Returns the major version.
-
getMinorVersion()
- Returns the minor version.
-
getProductName()
- Returns the product name.
-
getVersionString()
- Returns the version string.
copyrightString
public final static String copyrightString
getMajorVersion
public abstract int getMajorVersion()
- Returns the major version.
getMinorVersion
public abstract int getMinorVersion()
- Returns the minor version.
getVersionString
public abstract String getVersionString()
- Returns the version string.
getCopyrightNotice
public abstract String getCopyrightNotice()
- Returns the copyright notice.
getProductName
public abstract String getProductName()
- Returns the product name.
getDescription
public abstract String getDescription()
- Returns the application description.
dumpInfo
public abstract void dumpInfo(PrintStream ps,
String indent)
- Writes information about this object to the indicated PrintStream. Each line will
be preceded with the 'indent' argument.
All Packages Class Hierarchy This Package Previous Next Index