1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 27 public interface IMemoryBlock extends IDebugElement { 28 29 34 public long getStartAddress(); 35 36 41 public long getLength(); 42 43 55 public byte[] getBytes() throws DebugException; 56 57 62 public boolean supportsValueModification(); 63 64 81 public void setValue(long offset, byte[] bytes) throws DebugException; 82 83 } 84 85 | Popular Tags |