Package com.iizix.editor
Interface IValidateValue
- public interface IValidateValueThe validation interface used by connectors that wish to validate a VirtualSpace Field.- Author:
- Christopher Mindus
 
- Method Summary- All Methods Instance Methods Abstract Methods - Modifier and Type - Method - Description - boolean- validate(java.lang.Object connector, VSField field, boolean previousValidation)Validates a VirtualSpace field with all connectors present.- boolean- validateReferences(java.lang.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 Detail- validate- boolean validate(java.lang.Object connector, VSField field, boolean previousValidation)Validates 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.
 
 - validateReferences- boolean validateReferences(java.lang.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. 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.