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