TagSupport.java
上传用户:sxlinghang
上传日期:2022-07-20
资源大小:1405k
文件大小:7k
源码类别:

数据库编程

开发平台:

Java

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution, if
  20.  *    any, must include the following acknowlegement:  
  21.  *       "This product includes software developed by the 
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowlegement may appear in the software itself,
  24.  *    if and wherever such third-party acknowlegements normally appear.
  25.  *
  26.  * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
  27.  *    Foundation" must not be used to endorse or promote products derived
  28.  *    from this software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache"
  32.  *    nor may "Apache" appear in their names without prior written
  33.  *    permission of the Apache Group.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation.  For more
  51.  * information on the Apache Software Foundation, please see
  52.  * <http://www.apache.org/>.
  53.  *
  54.  */
  55. package javax.servlet.jsp.tagext;
  56. import javax.servlet.jsp.*;
  57. import javax.servlet.jsp.tagext.*;
  58. import javax.servlet.*;
  59. import java.io.Writer;
  60. import java.io.Serializable;
  61. import java.util.Hashtable;
  62. import java.util.Enumeration;
  63. /**
  64.  * Actions in a Tag Library are defined through subclasses of Tag.
  65.  */
  66. public class TagSupport implements Tag, Serializable {
  67.     /**
  68.      * Find the instance of a given class type that is closest to a given
  69.      * instance.
  70.      * This class is used for coordination among cooperating tags.
  71.      *
  72.      * @param the subclass of Tag or interface to be matched
  73.      * @return the nearest ancestor that implements the interface
  74.      * or is an instance of the class specified
  75.      */
  76.     public static final Tag findAncestorWithClass(Tag from, Class klass) {
  77. boolean isInterface = false;
  78. if (from == null ||
  79.     klass == null ||
  80.     (!Tag.class.isAssignableFrom(klass) &&
  81.      !(isInterface = klass.isInterface()))) {
  82.     return null;
  83. }
  84. for (;;) {
  85.     Tag tag = from.getParent();
  86.     if (tag == null) {
  87. return null;
  88.     }
  89.     if ((isInterface && klass.isInstance(tag)) ||
  90.         klass.isAssignableFrom(tag.getClass()))
  91. return tag;
  92.     else
  93. from = tag;
  94. }
  95.     }
  96.     /**
  97.      * Default constructor, all subclasses are required to only define
  98.      * a public constructor with the same signature, and to call the
  99.      * superclass constructor.
  100.      *
  101.      * This constructor is called by the code generated by the JSP
  102.      * translator.
  103.      *
  104.      * @param libraryPrefix The namespace prefix used for this library.
  105.      * For example "jsp:".
  106.      * @param tagName The name of the element or yag, for example "useBean"
  107.      */
  108.     public TagSupport() { }
  109.     /**
  110.      * doStartTag(), doEndTag() are most basic.
  111.      * setBodyOut(), doBeforeBody(), and doAfterBody() deal with body
  112.      * 
  113.      * In many cases not all of them are redefined.
  114.      */
  115.   
  116.     // Actions for basic start/end processing.
  117.     /**
  118.      * Process the start tag for this instance.
  119.      *
  120.      * The doStartTag() method assumes that all setter methods have been
  121.      * invoked before.
  122.      *
  123.      * When this method is invoked, the body has not yet been invoked.
  124.      *
  125.      * @returns EVAL_BODY_INCLUDE if the tag wants to process body, SKIP_BODY if it
  126.      * does ont want to process it.
  127.      */
  128.  
  129.     public int doStartTag() throws JspException {
  130.         return SKIP_BODY;
  131.     }
  132.     /**
  133.      * Process the end tag. This method will be called on all Tag objects.
  134.      *
  135.      * All instance state associated with this instance must be reset.
  136.      */
  137.     public int doEndTag() throws JspException {
  138. return EVAL_PAGE;
  139.     }
  140.     /**
  141.      * release() called after doEndTag() to reset state
  142.      */
  143.     public void release() {
  144. parent          = null;
  145.     }
  146.     /**
  147.      * Methods to access state
  148.      */
  149.     /**
  150.      * Set the nesting tag of this tag.
  151.      */
  152.     public void setParent(Tag t) {
  153. parent = t;
  154.     }
  155.     /**
  156.      * The Tag instance enclosing this tag instance.
  157.      *
  158.      * @return the parent tag instance or null
  159.      */
  160.     public Tag getParent() {
  161. return parent;
  162.     }
  163.     /**
  164.      * Set the id attribute
  165.      */
  166.     public void setId(String id) {
  167. this.id = id;
  168.     }
  169.     /**
  170.      * The value of the id attribute of this tag; or null.
  171.      *
  172.      * @return the value of the id attribute, or null
  173.      */
  174.     
  175.     public String getId() {
  176. return id;
  177.     }
  178.     /**
  179.      * set the page context
  180.      */
  181.     public void setPageContext(PageContext pageContext) {
  182. this.pageContext = pageContext;
  183.     }
  184.     /**
  185.      * Set a value
  186.      */
  187.     public void setValue(String k, Object o) {
  188. if (values == null) {
  189.     values = new Hashtable();
  190. }
  191. values.put(k, o);
  192.     }
  193.     /**
  194.      * Get a value
  195.      */
  196.     public Object getValue(String k) {
  197. if (values == null) {
  198.     return null;
  199. } else {
  200.     return values.get(k);
  201. }
  202.     }
  203.     /**
  204.      * Remove a value
  205.      */
  206.     public void removeValue(String k) {
  207. if (values != null) {
  208.     values.remove(k);
  209. }
  210.     }
  211.     /**
  212.      * Enumerate the values
  213.      */
  214.     public Enumeration getValues() {
  215. if (values == null) {
  216.     return null;
  217. }
  218. return values.keys();
  219.     }
  220.     // private fields
  221.     private   Tag         parent;
  222.     private   Hashtable   values;
  223.     protected String   id;
  224.     // protected fields
  225.     protected PageContext pageContext;
  226. }