インタフェース
javax.servlet.jsp.tagext.Tag の使用

Tag を使用しているパッケージ
javax.servlet.jsp.tagext   
 

javax.servlet.jsp.tagext での Tag の使用
 

javax.servlet.jsp.tagext での Tag のサブインタフェース
 interface BodyTag
          The BodyTag interface extends IterationTag by defining additional methods that let a tag handler manipulate the content of evaluating its body.
 interface IterationTag
          The IterationTag interface extends Tag by defining one additional method that controls the reevaluation of its body.
 

Tag を実装している javax.servlet.jsp.tagext のクラス
 class BodyTagSupport
          A base class for defining tag handlers implementing BodyTag.
 class TagSupport
          A base class for defining new tag handlers implementing Tag.
 

Tag を返す javax.servlet.jsp.tagext のメソッド
static Tag TagSupport.findAncestorWithClass(Tag from, java.lang.Class klass)
          Find the instance of a given class type that is closest to a given instance.
 Tag TagSupport.getParent()
          The Tag instance most closely enclosing this tag instance.
 Tag Tag.getParent()
          Get the parent (closest enclosing tag handler) for this tag handler.
 

Tag 型のパラメータを持つ javax.servlet.jsp.tagext のメソッド
static Tag TagSupport.findAncestorWithClass(Tag from, java.lang.Class klass)
          Find the instance of a given class type that is closest to a given instance.
 void TagSupport.setParent(Tag t)
          Set the nesting tag of this tag.
 void Tag.setParent(Tag t)
          Set the parent (closest enclosing tag handler) of this tag handler.
 



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