comparison agent/src/share/classes/sun/jvm/hotspot/tools/soql/SOQL.java @ 11054:38ea2efa32a7

8010278: SA: provide mechanism for using an alternative SA debugger back-end. Reviewed-by: sla, dsamersoff
author kevinw
date Wed, 26 Jun 2013 00:01:20 +0100
parents da91efe96a93
children 7fe6ef09d242
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
40 public class SOQL extends Tool { 40 public class SOQL extends Tool {
41 public static void main(String[] args) { 41 public static void main(String[] args) {
42 SOQL soql = new SOQL(); 42 SOQL soql = new SOQL();
43 soql.start(args); 43 soql.start(args);
44 soql.stop(); 44 soql.stop();
45 }
46
47 public SOQL() {
48 super();
49 }
50
51 public SOQL(JVMDebugger d) {
52 super(d);
45 } 53 }
46 54
47 protected SOQLEngine soqlEngine; 55 protected SOQLEngine soqlEngine;
48 protected BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); 56 protected BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
49 protected PrintStream out = System.out; 57 protected PrintStream out = System.out;