Uses of Interface
net.sf.jguiraffe.transform.ValidationMessage
-
Packages that use ValidationMessage Package Description net.sf.jguiraffe.gui.forms A package for dealing with forms.net.sf.jguiraffe.transform The transform package contains interfaces and classes for transforming and validating data. -
-
Uses of ValidationMessage in net.sf.jguiraffe.gui.forms
Methods in net.sf.jguiraffe.gui.forms that return ValidationMessage Modifier and Type Method Description static ValidationMessage
DefaultFormValidatorResults. createValidationMessage(Form form, String key, Object... params)
Obtains aValidationMessage
object for the specified key. -
Uses of ValidationMessage in net.sf.jguiraffe.transform
Methods in net.sf.jguiraffe.transform that return ValidationMessage Modifier and Type Method Description static ValidationMessage
DefaultValidationResult. createValidationMessage(TransformerContext context, String key, Object... params)
Creates aValidationMessage
object for the specified error message.ValidationMessage
DefaultValidationMessageHandler. getValidationMessage(TransformerContext context, String key, Object... params)
Returns a validation message.ValidationMessage
ValidationMessageHandler. getValidationMessage(TransformerContext context, String key, Object... params)
Returns aValidationMessage
object for the specified key.Methods in net.sf.jguiraffe.transform that return types with arguments of type ValidationMessage Modifier and Type Method Description Collection<ValidationMessage>
DefaultValidationResult. getValidationMessages()
Returns an unmodifiable collection with error messages.Collection<ValidationMessage>
DefaultValidationResult. getValidationMessages(ValidationMessageLevel level)
Returns an unmodifiable collection with theValidationMessage
objects with the specifiedValidationMessageLevel
.Collection<ValidationMessage>
ValidationResult. getValidationMessages()
Returns a collection with allValidationMessage
objects that were created during validation.Collection<ValidationMessage>
ValidationResult. getValidationMessages(ValidationMessageLevel level)
Returns a collection with allValidationMessage
objects of the specified level that were created during validation.Methods in net.sf.jguiraffe.transform with parameters of type ValidationMessage Modifier and Type Method Description DefaultValidationResult.Builder
DefaultValidationResult.Builder. addValidationMessage(ValidationMessage msg)
Adds an object with a validation message to this instance.Method parameters in net.sf.jguiraffe.transform with type arguments of type ValidationMessage Modifier and Type Method Description DefaultValidationResult.Builder
DefaultValidationResult.Builder. addValidationMessages(Collection<ValidationMessage> msgs)
Adds all messages stored in the given collection to this object.
-