![MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual Download Page 337](http://html1.mh-extra.com/html/macromedia/coldfusion-4-5-developing-web/coldfusion-4-5-developing-web_develop-manual_3286369337.webp)
Chapter 18: Building Custom CFAPI Tags
311
Java CFX Reference
Contents
•
Interface CustomTag
•
Interface Query
•
Interface Request
•
Interface Response
Interface CustomTag
public abstract interface CustomTag
Interface for implementing custom tags.
Classes that implement this interface can be specified in the CLASS attribute of
the Java CFX tag. For example, if I have a class
MyCustomTag
which implements
this interface then the following CFML code could be used to call the
MyCustomTag.processRequest method:
<CFX_MyCustomTag">
Additional attributes may also be passed to the Java CFX tag. The values of these
attributes are available via the Request object passed to the processRequest
method.
Method Detail
processRequest
public void processRequest(Request request,
Response response)
throws Exception
Processes a request originating from the Java
CFX
tag.
Parameters:
request
— Parameters (attributes, query, etc.) for this request
Method Summary
void
processRequest(Request request, Response
response)
Processes a request
originating from the
CFX_mycustomtag
tag.
Summary of Contents for COLDFUSION 4.5-DEVELOPING WEB
Page 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Page 14: ...xiv Developing Web Applications with ColdFusion...
Page 26: ...xxvi Developing Web Applications with ColdFusion...
Page 34: ...8 Developing Web Applications with ColdFusion...
Page 70: ...44 Developing Web Applications with ColdFusion...
Page 84: ...58 Developing Web Applications with ColdFusion...
Page 114: ...88 Developing Web Applications with ColdFusion...
Page 148: ...122 Developing Web Applications with ColdFusion...
Page 174: ...148 Developing Web Applications with ColdFusion...
Page 208: ...182 Developing Web Applications with ColdFusion...
Page 244: ...218 Developing Web Applications with ColdFusion...
Page 274: ...248 Developing Web Applications with ColdFusion...
Page 288: ...262 Developing Web Applications with ColdFusion...
Page 300: ...274 Developing Web Applications with ColdFusion...
Page 350: ...324 Developing Web Applications with ColdFusion...
Page 362: ...336 Developing Web Applications with ColdFusion...