mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
remove method supportsValueModification().
This commit is contained in:
parent
71a99db46e
commit
171c7a68e2
1 changed files with 2 additions and 9 deletions
|
@ -45,13 +45,6 @@ public interface ICDIMemoryBlock extends ICDIObject
|
|||
*/
|
||||
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
|
||||
* 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>
|
||||
* </ul>
|
||||
*/
|
||||
void setValue( long offset, byte[] bytes ) throws CDIException;
|
||||
void setValue(long offset, byte[] bytes) throws CDIException;
|
||||
|
||||
boolean isFrozen();
|
||||
|
||||
void setFrozen( boolean frozen );
|
||||
void setFrozen(boolean frozen);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue