javax.servlet.jsp.tagext
クラス TagExtraInfo

java.lang.Object
  |
  +--javax.servlet.jsp.tagext.TagExtraInfo

public abstract class TagExtraInfo
extends java.lang.Object

Optional class provided by the tag library author to describe additional translation-time information not described in the TLD. The TagExtraInfo class is mentioned in the Tag Library Descriptor file (TLD).

This class can be used:

It is the responsibility of the JSP translator that the initial value to be returned by calls to getTagInfo() corresponds to a TagInfo object for the tag being translated. If an explicit call to setTagInfo() is done, then the object passed will be returned in subsequent calls to getTagInfo().

The only way to affect the value returned by getTagInfo() is through a setTagInfo() call, and thus, TagExtraInfo.setTagInfo() is to be called by the JSP translator, with a TagInfo object that corresponds to the tag being translated. The call should happen before any invocation on isValid() and before any invocation on getVariableInfo().


コンストラクタの概要
TagExtraInfo()
           
 
メソッドの概要
 TagInfo getTagInfo()
          Get the TagInfo for this class.
 VariableInfo[] getVariableInfo(TagData data)
          information on scripting variables defined by the tag associated with this TagExtraInfo instance.
 boolean isValid(TagData data)
          Translation-time validation of the attributes.
 void setTagInfo(TagInfo tagInfo)
          Set the TagInfo for this class.
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

TagExtraInfo

public TagExtraInfo()
メソッドの詳細

getVariableInfo

public VariableInfo[] getVariableInfo(TagData data)
information on scripting variables defined by the tag associated with this TagExtraInfo instance. Request-time attributes are indicated as such in the TagData parameter.

パラメータ:
data - The TagData instance.
戻り値:
An array of VariableInfo data.

isValid

public boolean isValid(TagData data)
Translation-time validation of the attributes. Request-time attributes are indicated as such in the TagData parameter.

パラメータ:
data - The TagData instance.
戻り値:
Whether this tag instance is valid.

setTagInfo

public final void setTagInfo(TagInfo tagInfo)
Set the TagInfo for this class.

パラメータ:
tagInfo - The TagInfo this instance is extending

getTagInfo

public final TagInfo getTagInfo()
Get the TagInfo for this class.

戻り値:
the taginfo instance this instance is extending


Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.