// initialize a debug response public DebugResponse() ; // print the results of processing public void printResults() ;
// initialize a query with name and columns public DebugQuery( Stringname
, String[]columns
) throws IllegalArgumentException ; // initialize a query with name, columns, and data public DebugQuery( Stringname
, String[]columns
, String[][]data
) throws IllegalArgumentException ;