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:
parent
598445c740
commit
3c1c73ce62
1 changed files with 16 additions and 1 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue