Save This Page
Home » glassfish-v2ur2-b04-src » javax » servlet » jsp » tagext » [javadoc | source]
    1   /*
    2    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    3    * 
    4    * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
    5    * 
    6    * Portions Copyright Apache Software Foundation.
    7    * 
    8    * The contents of this file are subject to the terms of either the GNU
    9    * General Public License Version 2 only ("GPL") or the Common Development
   10    * and Distribution License("CDDL") (collectively, the "License").  You
   11    * may not use this file except in compliance with the License. You can obtain
   12    * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
   13    * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
   14    * language governing permissions and limitations under the License.
   15    * 
   16    * When distributing the software, include this License Header Notice in each
   17    * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
   18    * Sun designates this particular file as subject to the "Classpath" exception
   19    * as provided by Sun in the GPL Version 2 section of the License file that
   20    * accompanied this code.  If applicable, add the following below the License
   21    * Header, with the fields enclosed by brackets [] replaced by your own
   22    * identifying information: "Portions Copyrighted [year]
   23    * [name of copyright owner]"
   24    * 
   25    * Contributor(s):
   26    * 
   27    * If you wish your version of this file to be governed by only the CDDL or
   28    * only the GPL Version 2, indicate your decision by adding "[Contributor]
   29    * elects to include this software in this distribution under the [CDDL or GPL
   30    * Version 2] license."  If you don't indicate a single choice of license, a
   31    * recipient has the option to distribute your version of this file under
   32    * either the CDDL, the GPL Version 2 or to extend the choice of license to
   33    * its licensees as provided above.  However, if you add GPL Version 2 code
   34    * and therefore, elected the GPL Version 2 license, then the option applies
   35    * only if the new code is made subject to such option by the copyright
   36    * holder.
   37    */
   38    
   39   package javax.servlet.jsp.tagext;
   40   
   41   /**
   42    * Information for a function in a Tag Library.
   43    * This class is instantiated from the Tag Library Descriptor file (TLD)
   44    * and is available only at translation time.
   45    * 
   46    * @since 2.0
   47    */
   48   public class FunctionInfo {
   49   
   50       /**
   51        * Constructor for FunctionInfo.
   52        *
   53        * @param name The name of the function
   54        * @param klass The class of the function
   55        * @param signature The signature of the function
   56        */
   57   
   58       public FunctionInfo(String name, String klass, String signature) {
   59   
   60   	this.name = name;
   61           this.functionClass = klass;
   62           this.functionSignature = signature;
   63       }
   64   
   65       /**
   66        * The name of the function.
   67        *
   68        * @return The name of the function
   69        */
   70   
   71       public String getName() {
   72   	return name;
   73       }
   74   
   75       /**
   76        * The class of the function.
   77        *
   78        * @return The class of the function
   79        */
   80   
   81       public String getFunctionClass() {
   82           return functionClass;
   83       }
   84   
   85       /**
   86        * The signature of the function.
   87        *
   88        * @return The signature of the function
   89        */
   90   
   91       public String getFunctionSignature() {
   92           return functionSignature;
   93       }
   94   
   95       /*
   96        * fields
   97        */
   98   
   99       private String name;
  100       private String functionClass;
  101       private String functionSignature;
  102   }

Save This Page
Home » glassfish-v2ur2-b04-src » javax » servlet » jsp » tagext » [javadoc | source]