站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Java Platform, Enterprise Edition v1.4 API Specifications

FunctionInfo (Java 2 Platform Ent. Ed. v1.4) - Java Platform, Enterprise Edition v1.4 API Specifications

JavaTM 2 Platform
Ent. Ed. v1.4

javax.servlet.jsp.tagext
Class FunctionInfo

java.lang.Object
  extended byjavax.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:
2.0

Constructor Summary
FunctionInfo(String name, String klass, String signature)
          Constructor for FunctionInfo.
 
Method Summary
 String getFunctionClass()
          The class of the function.
 String getFunctionSignature()
          The signature of the function.
 String getName()
          The name of the function.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FunctionInfo

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

Parameters:
name - The name of the function
klass - The class of the function
signature - The signature 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

JavaTM 2 Platform
Ent. Ed. v1.4

Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.