mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 21:15:23 +02:00
[150388] default implementations of initializeSubSystem and uninitializeSubSystem have been provided.
This commit is contained in:
parent
7a9f840fc4
commit
9dae46223a
1 changed files with 13 additions and 2 deletions
|
@ -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 gets called after the corresponding {@link IConnectorService} connect method finishes.
|
||||||
* This method should be overridden if any initialization for the subsystem needs
|
* This method should be overridden if any initialization for the subsystem needs
|
||||||
* to occur at this time
|
* 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.
|
* Attempt to connect to the remote system when a Shell is not available.
|
||||||
|
|
Loading…
Add table
Reference in a new issue