Package com.iizix.editor
Interface IValidateValue
public interface IValidateValue
The validation interface used by connectors that wish to validate a VirtualSpace Field.
- Author:
- Christopher Mindus
- Method SummaryModifier and TypeMethodDescription- booleanValidates a VirtualSpace field with all connectors present.- boolean- validateReferences- (Object connector, VSField field, boolean previousValidation) Validates the references of the VirtualSpace Field once it has been converted into a Raw Value followed by the- validatemethod.
- Method Details- validateValidates a VirtualSpace field with all connectors present. Validation of connectors are always done for all connectors. This method is called first to check each individual field. The- validateReferencesis then called.- Parameters:
- connector- The connector instance being called.
- field- The VirtualSpace Field being validated.
- previousValidation- The previous validation result from a connector, or true if this is the first connector.
- Returns:
- true for successful validation, false otherwise.
 
- validateReferencesValidates the references of the VirtualSpace Field once it has been converted into a Raw Value followed by the- validatemethod. Validation of connectors are always done for all connectors. This method is called first to check each individual field. The- validateReferencesis then called.- Parameters:
- connector- The connector instance being called.
- field- The VirtualSpace Field being validated.
- previousValidation- The previous validation result from a connector, or true if this is the first connector.
- Returns:
- true for successful validation, false otherwise.