Package | Description |
---|---|
org.apache.tapestry5 |
Root package for Tapestry, containing common interfaces and data types used throughout the framework.
|
org.apache.tapestry5.corelib.base |
Base components intended to be extended by other components rather than
used directly in templates.
|
org.apache.tapestry5.corelib.internal |
[INTERNAL USE ONLY] support classes for the Tapestry-core module; API subject to change
core components.
|
org.apache.tapestry5.internal.beanvalidator |
[INTERNAL USE ONLY] JSR-303 Bean Validation implementation details; API subject to change
|
org.apache.tapestry5.internal.services |
[INTERNAL USE ONLY] internal service classes; API subject to change
|
org.apache.tapestry5.internal.translator |
[INTERNAL USE ONLY] translator implementation classes; API subject to change.
|
org.apache.tapestry5.modules | |
org.apache.tapestry5.test |
Support for testing Tapestry pages
|
org.apache.tapestry5.validator |
Validators for use by Tapestry (and custom) form field components.
|
Modifier and Type | Method and Description |
---|---|
void |
Validator.render(Field field,
C constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport)
Hook used by components to allow the validator to contribute additional attributes or (more often) client-side
JavaScript (via the
addValidation(Field, String, String, Object) ). |
void |
Translator.render(Field field,
String message,
MarkupWriter writer,
FormSupport formSupport)
Hook used by components to allow the validator to contribute additional attributes or (more often) client-side
JavaScript (via the
addValidation(Field, String, String, Object) ). |
Modifier and Type | Field and Description |
---|---|
protected FormSupport |
AbstractField.formSupport |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractField.setFormSupport(FormSupport formSupport) |
Modifier and Type | Interface and Description |
---|---|
interface |
InternalFormSupport
Additional methods for
FormSupport used internally by Tapestry. |
Modifier and Type | Class and Description |
---|---|
class |
FormSupportAdapter
An implementation of
FormSupport that delegates all behavior to another
instance of FormSupport. |
class |
FormSupportImpl
Provides support to components enclosed by a form when the form is rendering (allowing the components to registry
form submit callback commands), and also during form submission time.
|
Constructor and Description |
---|
FormSupportAdapter(FormSupport delegate) |
Constructor and Description |
---|
BeanFieldValidator(Field field,
ValidatorFactory validatorFactory,
BeanValidatorGroupSource beanValidationGroupSource,
ClientConstraintDescriptorSource clientValidatorSource,
FormSupport formSupport,
Environment environment) |
BeanFieldValidatorDefaultSource(FieldValidatorDefaultSource fieldValidatorDefaultSource,
ValidatorFactory validatorFactory,
BeanValidatorGroupSource beanValidationGroupSource,
ClientConstraintDescriptorSource clientValidatorSource,
FormSupport formSupport,
Environment environment) |
Constructor and Description |
---|
FieldTranslatorImpl(Field field,
Translator<T> translator,
MessageFormatter formatter,
FormSupport formSupport) |
FieldTranslatorSourceImpl(TranslatorSource translatorSource,
Messages globalMessages,
FormSupport formSupport) |
FieldValidatorImpl(Field field,
Object constraintValue,
MessageFormatter messageFormatter,
Validator validator,
FormSupport formSupport) |
FieldValidatorSourceImpl(Messages globalMessages,
TypeCoercer typeCoercer,
FormSupport formSupport,
Map<String,Validator> validators,
ValidatorMacro validatorMacro) |
Modifier and Type | Method and Description |
---|---|
void |
StringTranslator.render(Field field,
String message,
MarkupWriter writer,
FormSupport formSupport)
Does nothing.
|
void |
NumericTranslator.render(Field field,
String message,
MarkupWriter writer,
FormSupport formSupport) |
Modifier and Type | Method and Description |
---|---|
FormSupport |
TapestryModule.buildFormSupport()
Builds a proxy to the current
FormSupport inside this
thread's Environment . |
Modifier and Type | Method and Description |
---|---|
protected FormSupport |
TapestryTestCase.mockFormSupport() |
Modifier and Type | Method and Description |
---|---|
protected void |
TapestryTestCase.train_getFormComponentId(FormSupport formSupport,
String componentId) |
protected void |
TapestryTestCase.train_getFormValidationId(FormSupport formSupport,
String validationId) |
Modifier and Type | Method and Description |
---|---|
void |
MaxLength.render(Field field,
Integer constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
MinLength.render(Field field,
Integer constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
Max.render(Field field,
Long constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
Min.render(Field field,
Long constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
Regexp.render(Field field,
Pattern constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
Required.render(Field field,
Void constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
void |
None.render(Field field,
Void constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport)
Does nothing.
|
void |
Email.render(Field field,
Void constraintValue,
MessageFormatter formatter,
MarkupWriter writer,
FormSupport formSupport) |
${project.version} - Copyright © 2003-2015 The Apache Software Foundation.