Declares an attribute that may be given to an instance of the
composite component tag for this composite component. There
may be zero or many of these inside of the
<cc:interface
> section. This element may be
nested within other <cc:attribute>
elements to
convey a usage contract that includes nested properties.
Please see summary page for a usage example.
The top level component in which this element is
ultimately nested must be a NamingContainer
.
There are certain component properties that must not be
exposed using this element. The motivation for this
restriction is that the mapping of markup attributes to
component properties/attributes does not allow for these
attributes to be set. The following properties must not be
exposed using this element.
Name | Required | Type | Description |
---|---|---|---|
default | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
If this attribute is not required, and a value is not supplied by the page author, use this as the default value. |
displayName | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
The name to display in a tool palette containing this component. The value of this attribute will be set as the value for this property on the composite component bean descriptor. |
expert | false | jakarta.el.ValueExpression
(must evaluate to boolean )
|
Is this component only for expert users? The value of this attribute will be set as the value for this property on the composite component bean descriptor. |
method-signature | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
Declares that this attribute must be a Provides the signature of the Java method. The syntax of the method-signature element is as follows (taken from function-signature in web-jsptaglibrary_2_1.xsd): MethodSignature ::= ReturnType S MethodName S? '(' S? Parameters? S? ')' ReturnType ::= Type MethodName ::= Identifier Parameters ::= Parameter | ( Parameter S? ',' S? Parameters ) Parameter ::= Type Where:
Example:
|
name | true | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
The name of the attribute as it must appear on the composite
component tag in the using page. If the value of the
name attribute is equal to (without the quotes)
“action”, “actionListener”,
“validator”, or “valueChangeListener”, the
action described in ViewHandler.retargetMethodExpressions()
must be taken to handle the attribute. In these cases, the
|
preferred | false | jakarta.el.ValueExpression
(must evaluate to boolean )
|
Is this a "preferred" component. The value of this attribute will be set as the value for this property on the composite component bean descriptor. |
required | false | jakarta.el.ValueExpression
(must evaluate to boolean )
|
True if the page author must supply a value for this attribute. The default value is false. |
shortDescription | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
A short description of the purpose of this component. The value of this attribute will be set as the value for this property on the composite component bean descriptor. |
targetAttributeName
|
false
| jakarta.el.ValueExpression
(must evaluate to
java.lang.String
)
|
This attribute allows the name of the attribute exposed to the using page to differ from the one actually used in the implementation. For example, consider a composite component that contains two buttons, one that means "submit" and one that means "cancel". It is natural to want to declare two composite component attributes to allow these buttons to be customized, for example, "submitAction" and "cancelAction". For both of these buttons, the method expression should be retargeted to the inner button's "action" attribute. This scenario would be expressed as follows.
<cc:interface>
|
targets | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
If this element has a |
type | false | jakarta.el.ValueExpression
(must evaluate to java.lang.String )
|
Declares that this attribute must be a |