Class ComponentDefaultProviderImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.ComponentDefaultProviderImpl
-
- All Implemented Interfaces:
ComponentDefaultProvider
public class ComponentDefaultProviderImpl extends java.lang.Object implements ComponentDefaultProvider
-
-
Constructor Summary
Constructors Constructor Description ComponentDefaultProviderImpl(PropertyAccess propertyAccess, BindingSource bindingSource, ValueEncoderSource valueEncoderSource, FieldTranslatorSource fieldTranslatorSource, FieldValidatorDefaultSource fieldValidatorDefaultSource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Binding
defaultBinding(java.lang.String parameterName, ComponentResources resources)
Checks to see if the container of the component (identified by its resources) contains a property matching the component's id.java.lang.String
defaultLabel(ComponentResources resources)
Computes the default label for the component (which will generally be aField
).FieldTranslator
defaultTranslator(java.lang.String parameterName, ComponentResources resources)
Provides a translator based on the bound parameter type, if possible.Binding
defaultTranslatorBinding(java.lang.String parameterName, ComponentResources resources)
Provides a binding that itself provides the field translator.FieldValidator
defaultValidator(java.lang.String parameterName, ComponentResources resources)
Provides a validator based on the bound parameter type.Binding
defaultValidatorBinding(java.lang.String parameterName, ComponentResources resources)
Provides a binding that itself provides the field translator.ValueEncoder
defaultValueEncoder(java.lang.String parameterName, ComponentResources resources)
Gets or creates a value encoder based on the type of the named parameter.
-
-
-
Constructor Detail
-
ComponentDefaultProviderImpl
public ComponentDefaultProviderImpl(PropertyAccess propertyAccess, BindingSource bindingSource, ValueEncoderSource valueEncoderSource, FieldTranslatorSource fieldTranslatorSource, FieldValidatorDefaultSource fieldValidatorDefaultSource)
-
-
Method Detail
-
defaultLabel
public java.lang.String defaultLabel(ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Computes the default label for the component (which will generally be aField
).- Specified by:
defaultLabel
in interfaceComponentDefaultProvider
- Returns:
- the label, either extracted from the component's container's message catalog, or derived from the
component's
ComponentResourcesCommon.getId()
.
-
defaultBinding
public Binding defaultBinding(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Checks to see if the container of the component (identified by its resources) contains a property matching the component's id. If so, a binding for that property is returned. This is usually the default for aField
's value parameter (or equivalent).- Specified by:
defaultBinding
in interfaceComponentDefaultProvider
- Parameters:
parameterName
- the name of the parameterresources
- the resources of the component for which a binding is needed- Returns:
- the binding, or null if the container does not have a matching property
-
defaultValueEncoder
public ValueEncoder defaultValueEncoder(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Gets or creates a value encoder based on the type of the named parameter. ValueEncoders are cached based on type.- Specified by:
defaultValueEncoder
in interfaceComponentDefaultProvider
- Parameters:
parameterName
- the name of the parameter whose type is used to locate aValueEncoderFactory
resources
- the resources of the component, from which parameter and its type are extracted- Returns:
- the value encoder, or null if the type of the parameter is not known
-
defaultTranslator
public FieldTranslator defaultTranslator(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Provides a translator based on the bound parameter type, if possible.- Specified by:
defaultTranslator
in interfaceComponentDefaultProvider
- Returns:
- the translator, or null
-
defaultTranslatorBinding
public Binding defaultTranslatorBinding(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Provides a binding that itself provides the field translator.- Specified by:
defaultTranslatorBinding
in interfaceComponentDefaultProvider
- Returns:
- binding that provides the
FieldTranslator
-
defaultValidator
public FieldValidator defaultValidator(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Provides a validator based on the bound parameter type. If the property type of the parameter is not known, then a no-op validator is returned.- Specified by:
defaultValidator
in interfaceComponentDefaultProvider
- Returns:
- the validator, possibly a no-op validator
-
defaultValidatorBinding
public Binding defaultValidatorBinding(java.lang.String parameterName, ComponentResources resources)
Description copied from interface:ComponentDefaultProvider
Provides a binding that itself provides the field translator.- Specified by:
defaultValidatorBinding
in interfaceComponentDefaultProvider
- Returns:
- binding that provides the
FieldTranslator
-
-