1 19 20 package org.netbeans.api.debugger.jpda; 21 22 23 42 public interface ObjectVariable extends Variable { 43 44 50 public abstract String getToStringValue () throws InvalidExpressionException; 51 52 62 public abstract Variable invokeMethod ( 63 String methodName, 64 String signature, 65 Variable[] arguments 66 ) throws NoSuchMethodException , InvalidExpressionException; 67 68 73 public abstract int getFieldsCount (); 74 75 82 public abstract Field getField (String name); 83 84 93 public abstract Field[] getFields (int from, int to); 94 95 100 public abstract Field[] getAllStaticFields (int from, int to); 101 102 107 public abstract Field[] getInheritedFields (int from, int to); 108 109 114 public abstract Super getSuper (); 115 } 116 | Popular Tags |