public interface FunctionIF
See logic:externalFunction for how to register your own function with the tag libraries. The function can later be executed using logic:call.
Modifier and Type | Method and Description |
---|---|
void |
call(javax.servlet.jsp.PageContext pageContext,
javax.servlet.jsp.tagext.TagSupport callingTag)
Deprecated.
1.3.4. Use
Object call(PageContext)
instead. |
Collection |
execute(javax.servlet.jsp.PageContext pageContext,
javax.servlet.jsp.tagext.TagSupport callingTag)
INTERNAL: Executes this function in the specified context.
|
ModuleIF |
getModule()
Deprecated.
This method is not used, and need not be implemented.
|
String |
getName()
Deprecated.
1.3.4. Function names are now stored outside the
function object itself.
|
Collection |
getParameters()
INTERNAL: Return the names of the parameters as an ordered
Collection . |
String |
getReturnVariableName()
Deprecated.
1.3.4. Return function value from the
Object
call(PageContext) method instead. |
JSPTreeNodeIF |
getRootNode()
Deprecated.
This method is not used, and need not be implemented.
|
Collection getParameters()
Collection
.Collection execute(javax.servlet.jsp.PageContext pageContext, javax.servlet.jsp.tagext.TagSupport callingTag) throws IOException, javax.servlet.jsp.JspException
IOException
javax.servlet.jsp.JspException
@Deprecated void call(javax.servlet.jsp.PageContext pageContext, javax.servlet.jsp.tagext.TagSupport callingTag) throws IOException, javax.servlet.jsp.JspException
Object call(PageContext)
instead.IOException
javax.servlet.jsp.JspException
@Deprecated String getName()
@Deprecated String getReturnVariableName()
Object
call(PageContext)
method instead.@Deprecated JSPTreeNodeIF getRootNode()
@Deprecated ModuleIF getModule()