mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
New interface.
This commit is contained in:
parent
f60c2af5b2
commit
4fcf5ad026
1 changed files with 28 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
*(c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.core.cdi;
|
||||
|
||||
/**
|
||||
*/
|
||||
public interface ICDIManager extends ICDISessionObject {
|
||||
|
||||
/**
|
||||
* When the target is suspended the manager will check
|
||||
* for any updates. The default behaviour (on/off) depend on the manager.
|
||||
*/
|
||||
void setAutoUpdate(boolean update);
|
||||
|
||||
/**
|
||||
* Returns true is the manager is set to autoupdate.
|
||||
*/
|
||||
boolean isAutoUpdate();
|
||||
|
||||
/**
|
||||
* Force the manager to update its state.
|
||||
*/
|
||||
void update() throws CDIException;
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue