| org.josql.functions.FunctionHandler
All known Subclasses: org.josql.functions.AbstractFunctionHandler,
FunctionHandler | public interface FunctionHandler (Code) | | Defines an interface that custom objects can use to indicate that they can
store a reference to the Query object.
A function handler object does NOT have to implement this class, this is here purely
as a convenience for developers so that they can easily get a reference to the Query
object, since the Query object will call the
FunctionHandler.setQuery(Query) method.
|
Method Summary | |
public void | setQuery(Query q) Set the Query object that the function handler should use. |
setQuery | public void setQuery(Query q)(Code) | | Set the Query object that the function handler should use.
Parameters: q - The Query object. |
|
|