sofya.base
Class ProjectDescription

java.lang.Object
  extended by sofya.base.ProjectDescription

public class ProjectDescription
extends java.lang.Object

Utility class containing various constants, including the name of the Sofya database directory.

Version:
11/29/2004
Author:
Alex Kinneer

Field Summary
static java.lang.String dbDir
          Path to the Sofya database directory.
static boolean ENABLE_BRANCH_EXTENSIONS
          Specifies whether branch ID extensions are enabled in this build of Sofya.
static int MAJOR_REVISION
          Major revision number for this build.
static int MINOR_REVISION
          Minor revision number for this build.
static int RELEASE_VERSION
          Major release version number for this build.
static java.lang.String versionString
          Version string for this build of Sofya.
 
Method Summary
static java.lang.String getdbDir()
          Gets absolute path to the Sofya database directory.
static java.lang.String getVersionString()
          Gets Sofya version string.
static void main(java.lang.String[] args)
          Test driver for ProjectDescription.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

dbDir

public static final java.lang.String dbDir
Path to the Sofya database directory.


versionString

public static final java.lang.String versionString
Version string for this build of Sofya.


RELEASE_VERSION

public static final int RELEASE_VERSION
Major release version number for this build.

See Also:
Constant Field Values

MAJOR_REVISION

public static final int MAJOR_REVISION
Major revision number for this build.

See Also:
Constant Field Values

MINOR_REVISION

public static final int MINOR_REVISION
Minor revision number for this build.

See Also:
Constant Field Values

ENABLE_BRANCH_EXTENSIONS

public static final boolean ENABLE_BRANCH_EXTENSIONS
Specifies whether branch ID extensions are enabled in this build of Sofya.

See Also:
Constant Field Values
Method Detail

getdbDir

public static java.lang.String getdbDir()
Gets absolute path to the Sofya database directory.

Returns:
Absolute path to the Sofya database directory.

getVersionString

public static java.lang.String getVersionString()
Gets Sofya version string.

Returns:
The build version of this Sofya system, as a string.

main

public static void main(java.lang.String[] args)
Test driver for ProjectDescription.