Debugging classes reference



The constructors and methods supported by the DebugRequest, DebugResponse, and DebugQuery classes are as follows. These classes also support the other methods of the Request, Response, and Query interfaces, respectively.

DebugRequest

// initialize a debug request with attributes 
public DebugRequest( Hashtable attributes ) ; 
 
// initialize a debug request with attributes and a query 
public DebugRequest( Hashtable attributes, Query query ) ; 
 
// initialize a debug request with attributes, a query, and settings 
public DebugRequest( Hashtable attributes, Query query, Hashtable settings ) ;

DebugResponse

// initialize a debug response 
public DebugResponse() ; 
 
// print the results of processing  
public void printResults() ;

DebugQuery

// initialize a query with name and columns 
public DebugQuery( String name, String[] columns )  
    throws IllegalArgumentException ; 
 
// initialize a query with name, columns, and data 
public DebugQuery( String name, String[] columns, String[][] data )  
    throws IllegalArgumentException ;