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
-
defaultValue
- The default value of a parameter.
-
maxValue
-
-
minValue
-
-
StringParameterType()
-
-
getDefaultValue()
-
-
getMaxValue()
-
-
getMinValue()
-
-
getRange()
-
-
inRange(String)
-
-
string2Parameter(String[])
- Convert the parameter strings of a Module Description File to
its string parameter value.
defaultValue
private String defaultValue
- The default value of a parameter.
minValue
private String minValue
maxValue
private String maxValue
StringParameterType
public StringParameterType()
getDefaultValue
String getDefaultValue()
- Overrides:
- getDefaultValue in class ParameterType
getMinValue
String getMinValue()
- Overrides:
- getMinValue in class ParameterType
getMaxValue
String getMaxValue()
- Overrides:
- getMaxValue in class ParameterType
getRange
String getRange()
- Overrides:
- getRange in class ParameterType
inRange
boolean inRange(String valueString)
- Overrides:
- inRange in class ParameterType
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