1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

Fixing bug 138310. Renaming SeviceSubSystem to ServiceSubSystem.

This commit is contained in:
David Dykstal 2006-04-28 21:01:07 +00:00
parent 730612c850
commit ffe496dd39
4 changed files with 7 additions and 7 deletions

View file

@ -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 * Constructor
* Subclasses must call this via super(). * Subclasses must call this via super().
*/ */
protected SeviceSubSystem(IHost host, IConnectorService connectorService) protected ServiceSubSystem(IHost host, IConnectorService connectorService)
{ {
super(host, connectorService); super(host, connectorService);
} }

View file

@ -44,7 +44,7 @@ import org.eclipse.swt.widgets.Shell;
* <p> * <p>
* This class is typically used together with:</p> * This class is typically used together with:</p>
* <ul> * <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.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.AbstractSystemManager} for the system manager
* <li>{@link org.eclipse.rse.core.internal.subsystems.AbstractResource} for the individual remote resources * <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 * 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} * 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.AbstractSystem
* @see org.eclipse.rse.core.internal.subsystems.AbstractSystemManager * @see org.eclipse.rse.core.internal.subsystems.AbstractSystemManager
*/ */

View file

@ -56,8 +56,8 @@ import org.eclipse.swt.widgets.Shell;
* return inst; * return inst;
* } * }
* </code></pre> * </code></pre>
* Your {@link org.eclipse.rse.core.servicesubsystem.SeviceSubSystem SubSystem} class * Your {@link org.eclipse.rse.core.servicesubsystem.ServiceSubSystem SubSystem} class
* should then call this factory method in its {@link org.eclipse.rse.core.servicesubsystem.SeviceSubSystem#getSystemManager() getSystemManager()} method. * should then call this factory method in its {@link org.eclipse.rse.core.servicesubsystem.ServiceSubSystem#getSystemManager() getSystemManager()} method.
*/ */
public abstract class AbstractConnectorServiceManager implements IConnectorServiceManager public abstract class AbstractConnectorServiceManager implements IConnectorServiceManager
{ {

View file

@ -78,7 +78,7 @@ import org.eclipse.ui.progress.WorkbenchJob;
* </ol> * </ol>
* <p> * <p>
* This is the base class that subsystem suppliers subclass, although this is usually done * 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. * Each instance of this class represents a subsystem instance for a particular connection.
* <p> * <p>
* When a {@link org.eclipse.rse.model.SystemConnection SystemConnection} is created, this subsystem's factory will be asked to create an * When a {@link org.eclipse.rse.model.SystemConnection SystemConnection} is created, this subsystem's factory will be asked to create an