1 11 package com.sun.jdi; 12 13 14 import java.util.List ; 15 16 public interface ArrayReference extends ObjectReference { 17 public Value getValue(int arg1); 18 public List getValues(); 19 public List getValues(int arg1, int arg2); 20 public int length(); 21 public void setValue(int arg1, Value arg2) throws InvalidTypeException, ClassNotLoadedException; 22 public void setValues(int arg1, List arg2, int arg3, int arg4) throws InvalidTypeException, ClassNotLoadedException; 23 public void setValues(List arg1) throws InvalidTypeException, ClassNotLoadedException; 24 } 25 | Popular Tags |