Add attributes to the UIComponent associated with the closest
parent UIComponent tag.
For each Map.Entry
in the Map<String, Object>
referenced by the value attribute of this tag, take the following action.
If parent.getAttributes().containsKey(entry.getKey())
returns
true
, take no action for this entry. Otherwise, if
entry.getValue()
is a ValueExpression
call
parent.setValueExpression(entry.getKey(), entry.getValue())
.
Otherwise, call parent.getAttributes.put(entry.getKey(), entry.getValue()).
Name | Required | Type | Description |
---|---|---|---|
value | true | jakarta.el.ValueExpression
(must evaluate to java.util.Map )
| An EL |