javax.servlet.jsp.tagext
类 FunctionInfo

java.lang.Object
  继承者 javax.servlet.jsp.tagext.FunctionInfo

public class FunctionInfo
extends Object

Information for a function in a Tag Library. This class is instantiated from the Tag Library Descriptor file (TLD) and is available only at translation time.

从以下版本开始:
JSP 2.0

构造方法摘要
FunctionInfo(String name, String klass, String signature)
          Constructor for FunctionInfo.
 
方法摘要
 String getFunctionClass()
          The class of the function.
 String getFunctionSignature()
          The signature of the function.
 String getName()
          The name of the function.
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

FunctionInfo

public FunctionInfo(String name,
                    String klass,
                    String signature)
Constructor for FunctionInfo.

参数:
name - The name of the function
klass - The class of the function
signature - The signature of the function
方法详细信息

getName

public String getName()
The name of the function.

返回:
The name of the function

getFunctionClass

public String getFunctionClass()
The class of the function.

返回:
The class of the function

getFunctionSignature

public String getFunctionSignature()
The signature of the function.

返回:
The signature of the function


Copyright © 2013. All Rights Reserved.