| org.apache.tapestry.annotations.Component
Component | public @interface Component(Code) | | Used to define an embedded component within another component.
|
id | String id(Code) | | The id of the component. When left blank (the default), the component id is determined from
the field name.
|
parameters | String[] parameters(Code) | | Parameter bindings for the component. Each value in the array is of the form "name=value".
The value is a binding expression, with a default binding prefix of "prop:".
|
type | String type(Code) | | The component type. When this is left unspecified, then the annotated field's type is used
directly as the component type.
|
|
|