1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

new method refresh().

This commit is contained in:
Alain Magloire 2002-10-26 23:35:20 +00:00
parent 598445c740
commit 3c1c73ce62

View file

@ -64,7 +64,22 @@ public interface ICDIMemoryBlock extends ICDIObject
*/
void setValue(long offset, byte[] bytes) throws CDIException;
/**
* @return true if the block does not update.
*/
boolean isFrozen();
/**
* A memoryBlock set frozen means that the block will
* not update and check for new data.
* @param frozen the block is frozen by default.
*/
void setFrozen(boolean frozen);
/**
* Refresh the data, this may cause events to be trigger
* if the data values changed.
*/
void refresh() throws CDIException;
}