dms.dss
Class Application

java.lang.Object
  |
  +--dms.dss.Application

public class Application
extends java.lang.Object

Holds all the data for an application in the database. This object is returned by the DataSession object and all of its subtypes.

CVS $Id: Application.html,v 1.2 2003/08/01 21:44:22 khuck Exp $


Constructor Summary
Application()
           
 
Method Summary
 java.lang.String getDescription()
          Gets the description of the current application object.
 java.lang.String getExecutableOptions()
          Gets the executable options of the current application object.
 java.lang.String getExperimentTableName()
          Gets the experiment table name of the current application object.
 int getID()
          Gets the unique identifier of the current application object.
 java.lang.String getLanguage()
          Gets the language of the current application object.
 java.lang.String getName()
          Gets the name of the current application object.
 java.lang.String getParaDiag()
          Gets the para diag of the current application object.
 java.lang.String getUsage()
          Gets the usage of the current application object.
 java.lang.String getVersion()
          Gets the version of the current application object.
 void setDescription(java.lang.String description)
          Sets the description of the current application object.
 void setExecutableOptions(java.lang.String executableOptions)
          Sets the executable options of the current application object.
 void setExperimentTableName(java.lang.String experimentTableName)
          Sets the experiment table name of the current application object.
 void setID(int id)
          Sets the unique identifier of the current application object.
 void setLanguage(java.lang.String language)
          Sets the language of the current application object.
 void setName(java.lang.String name)
          Sets the name of the current application object.
 void setParaDiag(java.lang.String paraDiag)
          Sets the para diag of the current application object.
 void setUsage(java.lang.String usage)
          Sets the usage of the current application object.
 void setVersion(java.lang.String version)
          Sets the version of the current application object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Application

public Application()
Method Detail

getID

public int getID()
Gets the unique identifier of the current application object.

Returns:
the unique identifier of the application

getName

public java.lang.String getName()
Gets the name of the current application object.

Returns:
the name of the application

getVersion

public java.lang.String getVersion()
Gets the version of the current application object.

Returns:
the version of the application

getDescription

public java.lang.String getDescription()
Gets the description of the current application object.

Returns:
the description of the application

getLanguage

public java.lang.String getLanguage()
Gets the language of the current application object.

Returns:
the language of the application

getParaDiag

public java.lang.String getParaDiag()
Gets the para diag of the current application object.

Returns:
the para diag of the application

getUsage

public java.lang.String getUsage()
Gets the usage of the current application object.

Returns:
the usage of the application

getExecutableOptions

public java.lang.String getExecutableOptions()
Gets the executable options of the current application object.

Returns:
the executable options of the application

getExperimentTableName

public java.lang.String getExperimentTableName()
Gets the experiment table name of the current application object.

Returns:
the experiment table name of the application

setID

public void setID(int id)
Sets the unique identifier of the current application object.

Parameters:
id - a unique application identifier

setName

public void setName(java.lang.String name)
Sets the name of the current application object.


setVersion

public void setVersion(java.lang.String version)
Sets the version of the current application object.


setDescription

public void setDescription(java.lang.String description)
Sets the description of the current application object.


setLanguage

public void setLanguage(java.lang.String language)
Sets the language of the current application object.


setParaDiag

public void setParaDiag(java.lang.String paraDiag)
Sets the para diag of the current application object.


setUsage

public void setUsage(java.lang.String usage)
Sets the usage of the current application object.


setExecutableOptions

public void setExecutableOptions(java.lang.String executableOptions)
Sets the executable options of the current application object.


setExperimentTableName

public void setExperimentTableName(java.lang.String experimentTableName)
Sets the experiment table name of the current application object.