public class BaseValidationDecorator extends Object implements ValidationDecorator
ValidationDecorator
that does nothing. Subclasses may override specific methods,
knowing that all other methods do nothing at all.Constructor and Description |
---|
BaseValidationDecorator() |
Modifier and Type | Method and Description |
---|---|
void |
afterField(Field field)
Invoked after the field has completed rendering itself.
|
void |
afterLabel(Field field)
Invoked by
Label after rendering itself. |
void |
beforeField(Field field)
Renders immediately before the field itself.
|
void |
beforeLabel(Field field)
Invoked by a
Label before rendering itself. |
void |
insideField(Field field)
Invoked at a point where the decorator may write additional attributes into the field.
|
void |
insideLabel(Field field,
Element labelElement)
Invoked after the label has rendered its tag, but before it has rendered content inside the tag, to allow the
decorator to write additional attributes.
|
public BaseValidationDecorator()
public void beforeLabel(Field field)
ValidationDecorator
Label
before rendering itself.beforeLabel
in interface ValidationDecorator
field
- for this labelpublic void afterLabel(Field field)
ValidationDecorator
Label
after rendering itself.afterLabel
in interface ValidationDecorator
public void afterField(Field field)
ValidationDecorator
afterField
in interface ValidationDecorator
public void beforeField(Field field)
ValidationDecorator
beforeField
in interface ValidationDecorator
public void insideField(Field field)
ValidationDecorator
insideField
in interface ValidationDecorator
public void insideLabel(Field field, Element labelElement)
ValidationDecorator
insideLabel
in interface ValidationDecorator
field
- the field corresponding to the labellabelElement
- the element for this label5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.