comparison agent/src/share/classes/sun/jvm/hotspot/debugger/linux/LinuxOopHandle.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 de6a9e811145
comparison
equal deleted inserted replaced
11035:01e10b366055 11054:38ea2efa32a7
24 24
25 package sun.jvm.hotspot.debugger.linux; 25 package sun.jvm.hotspot.debugger.linux;
26 26
27 import sun.jvm.hotspot.debugger.*; 27 import sun.jvm.hotspot.debugger.*;
28 28
29 class LinuxOopHandle extends LinuxAddress implements OopHandle { 29 public class LinuxOopHandle extends LinuxAddress implements OopHandle {
30 LinuxOopHandle(LinuxDebugger debugger, long addr) { 30 public LinuxOopHandle(LinuxDebugger debugger, long addr) {
31 super(debugger, addr); 31 super(debugger, addr);
32 } 32 }
33 33
34 public boolean equals(Object arg) { 34 public boolean equals(Object arg) {
35 if (arg == null) { 35 if (arg == null) {