Package jakarta.servlet.jsp.tagext
Class FunctionInfo
java.lang.Object
jakarta.servlet.jsp.tagext.FunctionInfo
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.
- Since:
- JSP 2.0
- 
Constructor SummaryConstructorsConstructorDescriptionFunctionInfo(String name, String klass, String signature) Constructor for FunctionInfo.
- 
Method SummaryModifier and TypeMethodDescriptionThe class of the function.The signature of the function.getName()The name of the function.
- 
Constructor Details- 
FunctionInfoConstructor for FunctionInfo.- Parameters:
- name- The name of the function
- klass- The class of the function
- signature- The signature of the function
 
 
- 
- 
Method Details- 
getNameThe name of the function.- Returns:
- The name of the function
 
- 
getFunctionClassThe class of the function.- Returns:
- The class of the function
 
- 
getFunctionSignatureThe signature of the function.- Returns:
- The signature of the function
 
 
-