1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

[150388] default implementations of initializeSubSystem and uninitializeSubSystem have been provided.

This commit is contained in:
David Dykstal 2006-12-12 14:00:45 +00:00
parent 7a9f840fc4
commit 9dae46223a

View file

@ -2415,9 +2415,20 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
* This gets called after the corresponding {@link IConnectorService} connect method finishes.
* This method should be overridden if any initialization for the subsystem needs
* to occur at this time
* <p>
* The default implementation does nothing.
*/
public abstract void initializeSubSystem(IProgressMonitor monitor);
public void initializeSubSystem(IProgressMonitor monitor) {
}
/**
* Called after the associated {@link IConnectorService} disconnects.
* Override if there is any cleanup to do in the subsystem after disconnecting.
* <p>
* The default implementation does nothing.
*/
public void uninitializeSubSystem(IProgressMonitor monitor) {
}
/**
* Attempt to connect to the remote system when a Shell is not available.