1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.debug.core.DebugException; 15 import org.eclipse.debug.core.model.IIndexedValue; 16 17 25 26 public interface IJavaArray extends IJavaObject, IIndexedValue { 27 28 38 public IJavaValue[] getValues() throws DebugException; 39 40 54 public IJavaValue getValue(int index) throws DebugException; 55 56 66 public int getLength() throws DebugException; 67 68 84 public void setValue(int index, IJavaValue value) throws DebugException; 85 86 } 87 88 | Popular Tags |