Class DTODataCollectionNodeStatus
java.lang.Object
overit.geocallapp.wfm.datacollection.rs1.node.DTODataCollectionNodeStatus
- All Implemented Interfaces:
Serializable
DTO for data collection node status.
- Since:
- 22.0
- See Also:
- GCApi:
- dto
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether the data collection node is mandatory.booleanReturns whether the data collection node is readonly.booleanReturns whether the data collection node is visible.voidsetMandatory(boolean mandatory) Sets whether the data collection node is mandatory.voidsetReadonly(boolean readonly) Sets whether the data collection node is readonly.voidsetVisible(boolean visible) Sets whether the data collection node is visible.
-
Constructor Details
-
DTODataCollectionNodeStatus
public DTODataCollectionNodeStatus()
-
-
Method Details
-
isVisible
public boolean isVisible()Returns whether the data collection node is visible.- Returns:
- true if the node is visible, false otherwise
-
setVisible
public void setVisible(boolean visible) Sets whether the data collection node is visible.- Parameters:
visible- true if the node is visible, false otherwise
-
isReadonly
public boolean isReadonly()Returns whether the data collection node is readonly.- Returns:
- true if the node is readonly, false otherwise
-
setReadonly
public void setReadonly(boolean readonly) Sets whether the data collection node is readonly.- Parameters:
readonly- true if the node is readonly, false otherwise
-
isMandatory
public boolean isMandatory()Returns whether the data collection node is mandatory.- Returns:
- true if the node is mandatory, false otherwise
-
setMandatory
public void setMandatory(boolean mandatory) Sets whether the data collection node is mandatory.- Parameters:
mandatory- true if the node is mandatory, false otherwise
-