Package de.xima.fc.workflow.parser.infix
Interface IValidationResult
- 
- All Superinterfaces:
 Serializable
public interface IValidationResult extends Serializable
The result returned byIInfixExpressionHandler.validate(CharSequence, IValidationOptions).- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IValidationMessage>getMessages()booleanisValid() 
 - 
 
- 
- 
Method Detail
- 
getMessages
List<IValidationMessage> getMessages()
- Returns:
 - A list of all error, warning, and info messages produced by the validation.
 
 
- 
isValid
boolean isValid()
- Returns:
 trueif the expression is valid, e.g. there are no error messages.
 
 - 
 
 -