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.

Variable Index

 o copyrightString

Method Index

 o dumpInfo(PrintStream, String)
Writes information about this object to the indicated PrintStream.
 o getCopyrightNotice()
Returns the copyright notice.
 o getDescription()
Returns the application description.
 o getMajorVersion()
Returns the major version.
 o getMinorVersion()
Returns the minor version.
 o getProductName()
Returns the product name.
 o getVersionString()
Returns the version string.

Variables

 o copyrightString
  public final static String copyrightString

Methods

 o getMajorVersion
  public abstract int getMajorVersion()
Returns the major version.
 o getMinorVersion
  public abstract int getMinorVersion()
Returns the minor version.
 o getVersionString
  public abstract String getVersionString()
Returns the version string.
 o getCopyrightNotice
  public abstract String getCopyrightNotice()
Returns the copyright notice.
 o getProductName
  public abstract String getProductName()
Returns the product name.
 o getDescription
  public abstract String getDescription()
Returns the application description.
 o 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