1 11 package org.eclipse.debug.core.model; 12 13 import org.eclipse.debug.core.DebugException; 14 15 29 public interface IIndexedValue extends IValue { 30 31 40 public IVariable getVariable(int offset) throws DebugException; 41 42 52 public IVariable[] getVariables(int offset, int length) throws DebugException; 53 54 61 public int getSize() throws DebugException; 62 63 70 public int getInitialOffset(); 71 } 72 | Popular Tags |