mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 22:35:43 +02:00
Fixing bug 138310. Renaming SeviceSubSystem to ServiceSubSystem.
This commit is contained in:
parent
730612c850
commit
ffe496dd39
4 changed files with 7 additions and 7 deletions
|
@ -27,14 +27,14 @@ import org.eclipse.ui.dialogs.PropertyPage;
|
|||
|
||||
|
||||
|
||||
public abstract class SeviceSubSystem extends SubSystem implements IServiceSubSystem
|
||||
public abstract class ServiceSubSystem extends SubSystem implements IServiceSubSystem
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Subclasses must call this via super().
|
||||
*/
|
||||
protected SeviceSubSystem(IHost host, IConnectorService connectorService)
|
||||
protected ServiceSubSystem(IHost host, IConnectorService connectorService)
|
||||
{
|
||||
super(host, connectorService);
|
||||
}
|
|
@ -44,7 +44,7 @@ import org.eclipse.swt.widgets.Shell;
|
|||
* <p>
|
||||
* This class is typically used together with:</p>
|
||||
* <ul>
|
||||
* <li>{@link org.eclipse.rse.core.servicesubsystem.SeviceSubSystem} for the subsystem
|
||||
* <li>{@link org.eclipse.rse.core.servicesubsystem.ServiceSubSystem} for the subsystem
|
||||
* <li>{@link org.eclipse.rse.core.internal.subsystems.AbstractSystem} for the system
|
||||
* <li>{@link org.eclipse.rse.core.internal.subsystems.AbstractSystemManager} for the system manager
|
||||
* <li>{@link org.eclipse.rse.core.internal.subsystems.AbstractResource} for the individual remote resources
|
||||
|
@ -53,7 +53,7 @@ import org.eclipse.swt.widgets.Shell;
|
|||
* In general, for what methods to override, only worry about the non-generated methods in
|
||||
* this class, and ignore the hundreds in {@link org.eclipse.rse.core.subsystems.SubSystemConfiguration}
|
||||
*
|
||||
* @see org.eclipse.rse.core.servicesubsystem.SeviceSubSystem
|
||||
* @see org.eclipse.rse.core.servicesubsystem.ServiceSubSystem
|
||||
* @see org.eclipse.rse.core.internal.subsystems.AbstractSystem
|
||||
* @see org.eclipse.rse.core.internal.subsystems.AbstractSystemManager
|
||||
*/
|
||||
|
|
|
@ -56,8 +56,8 @@ import org.eclipse.swt.widgets.Shell;
|
|||
* return inst;
|
||||
* }
|
||||
* </code></pre>
|
||||
* Your {@link org.eclipse.rse.core.servicesubsystem.SeviceSubSystem SubSystem} class
|
||||
* should then call this factory method in its {@link org.eclipse.rse.core.servicesubsystem.SeviceSubSystem#getSystemManager() getSystemManager()} method.
|
||||
* Your {@link org.eclipse.rse.core.servicesubsystem.ServiceSubSystem SubSystem} class
|
||||
* should then call this factory method in its {@link org.eclipse.rse.core.servicesubsystem.ServiceSubSystem#getSystemManager() getSystemManager()} method.
|
||||
*/
|
||||
public abstract class AbstractConnectorServiceManager implements IConnectorServiceManager
|
||||
{
|
||||
|
|
|
@ -78,7 +78,7 @@ import org.eclipse.ui.progress.WorkbenchJob;
|
|||
* </ol>
|
||||
* <p>
|
||||
* This is the base class that subsystem suppliers subclass, although this is usually done
|
||||
* by subclassing the child class {@link org.eclipse.rse.core.servicesubsystem.impl.SeviceSubSystem DefaultSubSystemImpl}.<br>
|
||||
* by subclassing the child class {@link org.eclipse.rse.core.servicesubsystem.impl.ServiceSubSystem DefaultSubSystemImpl}.<br>
|
||||
* Each instance of this class represents a subsystem instance for a particular connection.
|
||||
* <p>
|
||||
* When a {@link org.eclipse.rse.model.SystemConnection SystemConnection} is created, this subsystem's factory will be asked to create an
|
||||
|
|
Loading…
Add table
Reference in a new issue