Package javax.servlet.jsp.tagext
Class FunctionInfo
- java.lang.Object
- 
- javax.servlet.jsp.tagext.FunctionInfo
 
- 
 public class FunctionInfo extends java.lang.ObjectInformation 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.- Since:
- JSP 2.0
 
- 
- 
Constructor SummaryConstructors Constructor Description FunctionInfo(java.lang.String name, java.lang.String klass, java.lang.String signature)Constructor for FunctionInfo.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFunctionClass()The class of the function.java.lang.StringgetFunctionSignature()The signature of the function.java.lang.StringgetName()The name of the function.
 
- 
- 
- 
Method Detail- 
getNamepublic java.lang.String getName() The name of the function.- Returns:
- The name of the function
 
 - 
getFunctionClasspublic java.lang.String getFunctionClass() The class of the function.- Returns:
- The class of the function
 
 - 
getFunctionSignaturepublic java.lang.String getFunctionSignature() The signature of the function.- Returns:
- The signature of the function
 
 
- 
 
-