1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

New interface.

This commit is contained in:
Alain Magloire 2003-01-27 03:32:41 +00:00
parent f60c2af5b2
commit 4fcf5ad026

View file

@ -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;
}