agent/src/share/classes/sun/jvm/hotspot/tools/soql/SOQL.java

Print this page

        

*** 42,51 **** --- 42,59 ---- SOQL soql = new SOQL(); soql.start(args); soql.stop(); } + public SOQL() { + super(); + } + + public SOQL(JVMDebugger d) { + super(d); + } + protected SOQLEngine soqlEngine; protected BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); protected PrintStream out = System.out; static protected String prompt = "soql> "; static protected String secondPrompt = "> ";