|
Ja-Jakarta Translation |
||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
public interface DynamicAttributes
For a tag to declare that it accepts dynamic attributes, it must implement
this interface. The entry for the tag in the Tag Library Descriptor must
also be configured to indicate dynamic attributes are accepted.
For any attribute that is not declared in the Tag Library Descriptor for
this tag, instead of getting an error at translation time, the
setDynamicAttribute()
method is called, with the name and
value of the attribute. It is the responsibility of the tag to
remember the names and values of the dynamic attributes.
メソッドの概要 | |
---|---|
void |
setDynamicAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.Object value)
Called when a tag declared to accept dynamic attributes is passed an attribute that is not declared in the Tag Library Descriptor. |
メソッドの詳細 |
---|
void setDynamicAttribute(java.lang.String uri, java.lang.String localName, java.lang.Object value) throws javax.servlet.jsp.JspException
uri
- the namespace of the attribute, or null if in the default
namespace.localName
- the name of the attribute being set.value
- the value of the attribute
javax.servlet.jsp.JspException
- if the tag handler wishes to
signal that it does not accept the given attribute. The
container must not call doStartTag() or doTag() for this tag.
|
Ja-Jakarta Translation |
||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |