All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class parameter.BooleanParameterType

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

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


Variable Index

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

Constructor Index

 o BooleanParameterType()

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 boolean parameter value.

Variables

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

 o minValue
 private boolean minValue
 o maxValue
 private boolean maxValue

Constructors

 o BooleanParameterType
 public BooleanParameterType()

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 boolean parameter value. The parameter name is converted in its super class ParameterType. The default value is converted in this method. This value is optional, unknown or empty default values are converted to false.

Overrides:
string2Parameter in class ParameterType

All Packages  Class Hierarchy  This Package  Previous  Next  Index