All Packages Class Hierarchy This Package Previous Next Index
Class parameter.ParameterType
java.lang.Object
|
+----parameter.ParameterType
- public abstract class ParameterType
- extends Object
ParameterType can contain all different parametersTypes.
This abstract class can contain all 4 parameter types:
integer types, real types, string types and boolean types.
This class also contains the parameter name. This value is
read from the Module Description File and can not be changed within
the framework.
-
getParameterName()
-
-
makeParameterClass(String)
- makeParameterClass creates an instance of a parameter type.
-
setParameterName(String)
-
-
string2Parameter(String[])
-
string2Parameter
public abstract void string2Parameter(String cleanLines[])
getParameterName
public String getParameterName()
setParameterName
public void setParameterName(String pN)
makeParameterClass
public static ParameterType makeParameterClass(String parId)
- makeParameterClass creates an instance of a parameter type.
The Module Description File contains a string describing the
parameter (int, real, boolean, string).
Using this string makeParameterClass will create the right
instance of that parameter type, either IntegerParameterType,
RealParameterType, StringParameterType or BooleanParameterType.
All Packages Class Hierarchy This Package Previous Next Index