|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.InputDescription
public class InputDescription
This class is used to describe the required input of an operator and the operator's behavior with respect to consumation of this input object. Input objects can be simply consumed (default) or the consumation behavior can be defined with help of an parameter (user decision).
Field Summary | |
---|---|
private java.lang.Class |
inputType
The class of the input object. |
private boolean |
keepDefault
The default value for consumation. |
private boolean |
parameter
Indicates if the operator at hand should define a parameter so that the user can decide if the input should be consumed. |
private java.lang.String |
parameterName
The parameter name. |
Constructor Summary | |
---|---|
InputDescription(java.lang.Class inputType)
Creates a new input description for the given class. |
|
InputDescription(java.lang.Class inputType,
boolean keepDefault)
Creates a new input description for the given class. |
|
InputDescription(java.lang.Class inputType,
boolean keepDefault,
boolean parameter)
Creates a new input description for the given class. |
|
InputDescription(java.lang.Class inputType,
boolean keepDefault,
boolean parameter,
java.lang.String parameterName)
Creates a new input description for the given class. |
Method Summary | |
---|---|
private static java.lang.String |
convertClass2ParameterName(java.lang.Class inputType)
Converts the class name into a parameter name following Yale conventions (lower case, underscores for empty spaces). |
java.lang.Class |
getInputType()
Returns the desired class of the input object. |
boolean |
getKeepDefault()
Indicates if the input should be consumed. |
java.lang.String |
getParameterName()
Returns the name of the user parameter. |
boolean |
showParameter()
Indicates if a user parameter should be defined. |
java.lang.String |
toString()
Returns a String representation of this input description. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private java.lang.Class inputType
private boolean keepDefault
private boolean parameter
private java.lang.String parameterName
Constructor Detail |
---|
public InputDescription(java.lang.Class inputType)
public InputDescription(java.lang.Class inputType, boolean keepDefault)
public InputDescription(java.lang.Class inputType, boolean keepDefault, boolean parameter)
parameter defines if the operator should provide a user parameter.
public InputDescription(java.lang.Class inputType, boolean keepDefault, boolean parameter, java.lang.String parameterName)
parameter defines if the operator should provide a user parameter. This parameter utilizes the given name.
Method Detail |
---|
public java.lang.Class getInputType()
public boolean getKeepDefault()
public boolean showParameter()
public java.lang.String getParameterName()
private static java.lang.String convertClass2ParameterName(java.lang.Class inputType)
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |