| net.sf.jasperreports.engine.util.JRQueryChunkHandler
JRQueryChunkHandler | public interface JRQueryChunkHandler (Code) | | A query chunk handler.
author: Lucian Chirita (lucianc@users.sourceforge.net) version: $Id: JRQueryChunkHandler.java 1683 2007-03-29 16:04:15Z lucianc $ See Also: JRQueryParser.parse(StringJRQueryChunkHandler) |
handleClauseChunk | void handleClauseChunk(String[] tokens)(Code) | | Handle a clause chunk ($X{..} ).
Parameters: tokens - the chunk tokens |
handleParameterChunk | void handleParameterChunk(String text)(Code) | | Handle a parameter chunk ($P{..} ).
Parameters: text - the chunk text, i.e. the parameter name |
handleParameterClauseChunk | void handleParameterClauseChunk(String text)(Code) | | Handle a parameter clause chunk ($P!{..} ).
Parameters: text - the chunk text, i.e. the parameter name |
handleTextChunk | void handleTextChunk(String text)(Code) | | Handle a plain text query chunk.
Parameters: text - the text |
|
|