1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

remove method supportsValueModification().

This commit is contained in:
Alain Magloire 2002-10-13 02:32:46 +00:00
parent 71a99db46e
commit 171c7a68e2

View file

@ -45,13 +45,6 @@ public interface ICDIMemoryBlock extends ICDIObject
*/ */
byte[] getBytes() throws CDIException; byte[] getBytes() throws CDIException;
/**
* Returns whether this memory block supports value modification
*
* @return whether this memory block supports value modification
*/
boolean supportsValueModification();
/** /**
* Sets the value of the bytes in this memory block at the specified * Sets the value of the bytes in this memory block at the specified
* offset within this memory block to the spcified bytes. * offset within this memory block to the spcified bytes.
@ -69,9 +62,9 @@ public interface ICDIMemoryBlock extends ICDIObject
* beyond the end of this memory block (index of out of range)</li> * beyond the end of this memory block (index of out of range)</li>
* </ul> * </ul>
*/ */
void setValue( long offset, byte[] bytes ) throws CDIException; void setValue(long offset, byte[] bytes) throws CDIException;
boolean isFrozen(); boolean isFrozen();
void setFrozen( boolean frozen ); void setFrozen(boolean frozen);
} }