Package javax.servlet.jsp.tagext
Class FunctionInfo
java.lang.Object
javax.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 Summary
ConstructorsConstructorDescriptionFunctionInfo(String name, String klass, String signature) Constructor for FunctionInfo. - 
Method Summary
Modifier and TypeMethodDescriptionThe class of the function.The signature of the function.getName()The name of the function. 
- 
Constructor Details
- 
FunctionInfo
Constructor for FunctionInfo.- Parameters:
 name- The name of the functionklass- The class of the functionsignature- The signature of the function
 
 - 
 - 
Method Details
- 
getName
The name of the function.- Returns:
 - The name of the function
 
 - 
getFunctionClass
The class of the function.- Returns:
 - The class of the function
 
 - 
getFunctionSignature
The signature of the function.- Returns:
 - The signature of the function
 
 
 -