Class DataCollectionNodeExpressionsResult<T>
java.lang.Object
overit.geocallapp.wfm.mobileforms.bl.node.expressions.DataCollectionNodeExpressionsResult<T>
- Type Parameters:
T- the generic type
The Class that defines the data collection node expressions result.
- Since:
- 12.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the calculated name.Returns the computed value.Returns the initial value.booleanChecks if is mandatory.booleanChecks if is readonly.booleanChecks if is visible.voidsetCalculatedName(String calculatedName) Sets the calculated name.voidsetComputedValue(T computedValue) Sets the computed value.voidsetInitialValue(T initialValue) Sets the initial value.voidsetMandatory(boolean mandatory) Sets the mandatory.voidsetReadonly(boolean readonly) Sets the readonly.voidsetVisible(boolean visible) Sets the visible.
-
Constructor Details
-
DataCollectionNodeExpressionsResult
public DataCollectionNodeExpressionsResult()
-
-
Method Details
-
isVisible
public boolean isVisible()Checks if is visible.- Returns:
- true, if is visible
-
setVisible
public void setVisible(boolean visible) Sets the visible.- Parameters:
visible- the visible
-
isReadonly
public boolean isReadonly()Checks if is readonly.- Returns:
- true, if is readonly
-
setReadonly
public void setReadonly(boolean readonly) Sets the readonly.- Parameters:
readonly- the readonly
-
isMandatory
public boolean isMandatory()Checks if is mandatory.- Returns:
- true, if is mandatory
-
setMandatory
public void setMandatory(boolean mandatory) Sets the mandatory.- Parameters:
mandatory- the mandatory
-
getInitialValue
Returns the initial value.- Returns:
- the initial value
-
setInitialValue
Sets the initial value.- Parameters:
initialValue- the initial value
-
getComputedValue
Returns the computed value.- Returns:
- the computed value
-
setComputedValue
Sets the computed value.- Parameters:
computedValue- the computed value
-
getCalculatedName
Returns the calculated name.- Returns:
- the calculated name
-
setCalculatedName
Sets the calculated name.- Parameters:
calculatedName- the calculated name
-