home *** CD-ROM | disk | FTP | other *** search
- package sun.tools.debug;
-
- public class StackFrame {
- Class clazz;
- String className;
- String methodName;
- // $FF: renamed from: pc int
- int field_0;
- int pcAbsolute;
- int lineno;
- LocalVariable[] localVariables;
-
- public String toString() {
- if (this.field_0 == -1) {
- return this.className + "." + this.methodName + " (native method)";
- } else if (this.lineno == -1) {
- return this.className + "." + this.methodName + " (pc " + this.field_0 + ")";
- } else {
- int var1 = this.className.lastIndexOf(46);
- String var2 = var1 >= 0 ? this.className.substring(var1 + 1) : this.className;
- return this.className + "." + this.methodName + " (" + var2 + ":" + Integer.toString(this.lineno) + ")";
- }
- }
- }
-