All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class parameter.StringParameterType

java.lang.Object
   |
   +----parameter.ParameterType
           |
           +----parameter.StringParameterType

public class StringParameterType
extends ParameterType
StringParameterType is used to store information describing a string parameter. It contains the default value of a parameter. These values are read from the Module Description File and can not be changed within the framework. This class extends the abstract class ParameterType

See Also:
ParameterType

Variable Index

 o defaultValue
The default value of a parameter.
 o maxValue
 o minValue

Constructor Index

 o StringParameterType()

Method Index

 o getDefaultValue()
 o getMaxValue()
 o getMinValue()
 o getRange()
 o inRange(String)
 o string2Parameter(String[])
Convert the parameter strings of a Module Description File to its string parameter value.

Variables

 o defaultValue
 private String defaultValue
The default value of a parameter.

 o minValue
 private String minValue
 o maxValue
 private String maxValue

Constructors

 o StringParameterType
 public StringParameterType()

Methods

 o getDefaultValue
 String getDefaultValue()
Overrides:
getDefaultValue in class ParameterType
 o getMinValue
 String getMinValue()
Overrides:
getMinValue in class ParameterType
 o getMaxValue
 String getMaxValue()
Overrides:
getMaxValue in class ParameterType
 o getRange
 String getRange()
Overrides:
getRange in class ParameterType
 o inRange
 boolean inRange(String valueString)
Overrides:
inRange in class ParameterType
 o string2Parameter
 public void string2Parameter(String cleanLines[])
Convert the parameter strings of a Module Description File to its string parameter value. The parameter name is converted in its super class ParameterType. The default value is converted in this method. This value is optional.

Overrides:
string2Parameter in class ParameterType

All Packages  Class Hierarchy  This Package  Previous  Next  Index