comparison agent/src/share/classes/sun/jvm/hotspot/tools/JInfo.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 c18cbe5936b8
children 7fe6ef09d242
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
23 */ 23 */
24 24
25 package sun.jvm.hotspot.tools; 25 package sun.jvm.hotspot.tools;
26 26
27 import sun.jvm.hotspot.runtime.*; 27 import sun.jvm.hotspot.runtime.*;
28 import sun.jvm.hotspot.debugger.JVMDebugger;
28 29
29 public class JInfo extends Tool { 30 public class JInfo extends Tool {
31 public JInfo() {
32 super();
33 }
34
30 public JInfo(int m) { 35 public JInfo(int m) {
31 mode = m; 36 mode = m;
37 }
38
39 public JInfo(JVMDebugger d) {
40 super(d);
32 } 41 }
33 42
34 protected boolean needsJavaPrefix() { 43 protected boolean needsJavaPrefix() {
35 return false; 44 return false;
36 } 45 }