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

Fix typos in Javadoc

This commit is contained in:
Martin Oberhuber 2007-05-16 11:15:58 +00:00
parent f704975e20
commit 3a06d112fd

View file

@ -90,7 +90,7 @@ public abstract class AbstractConnectorService extends RSEModelObject implements
} }
/** /**
* @return false, may be overriden * @return false, may be overridden
* @see IConnectorService#supportsRemoteServerLaunching() * @see IConnectorService#supportsRemoteServerLaunching()
*/ */
public boolean supportsRemoteServerLaunching() { public boolean supportsRemoteServerLaunching() {
@ -98,7 +98,7 @@ public abstract class AbstractConnectorService extends RSEModelObject implements
} }
/** /**
* @return false, may be overriden * @return false, may be overridden
* @see IConnectorService#supportsServerLaunchProperties() * @see IConnectorService#supportsServerLaunchProperties()
*/ */
public boolean supportsServerLaunchProperties() { public boolean supportsServerLaunchProperties() {
@ -106,7 +106,7 @@ public abstract class AbstractConnectorService extends RSEModelObject implements
} }
/** /**
* @return null, may be overriden * @return null, may be overridden
* @see IConnectorService#getRemoteServerLauncherProperties() * @see IConnectorService#getRemoteServerLauncherProperties()
*/ */
public IServerLauncherProperties getRemoteServerLauncherProperties() { public IServerLauncherProperties getRemoteServerLauncherProperties() {
@ -114,7 +114,7 @@ public abstract class AbstractConnectorService extends RSEModelObject implements
} }
/** /**
* Do nothing, may be overriden * Do nothing, may be overridden
* @param newRemoteServerLauncher the server launcher properties * @param newRemoteServerLauncher the server launcher properties
* @see IConnectorService#setRemoteServerLauncherProperties(IServerLauncherProperties) * @see IConnectorService#setRemoteServerLauncherProperties(IServerLauncherProperties)
*/ */
@ -428,14 +428,14 @@ public abstract class AbstractConnectorService extends RSEModelObject implements
/** /**
* Performs the actual connection to the target system. * Performs the actual connection to the target system.
* @param monitor for cancelation and progress reporting * @param monitor for cancellation and progress reporting
* @throws Exception if connection does not succeed * @throws Exception if connection does not succeed
*/ */
protected abstract void internalConnect(IProgressMonitor monitor) throws Exception; protected abstract void internalConnect(IProgressMonitor monitor) throws Exception;
/** /**
* Performs the actual disconnection from the target system. * Performs the actual disconnection from the target system.
* @param monitor for cancelation and progress reporting * @param monitor for cancellation and progress reporting
* @throws Exception if disconnection does not succeed * @throws Exception if disconnection does not succeed
*/ */
protected abstract void internalDisconnect(IProgressMonitor monitor) throws Exception; protected abstract void internalDisconnect(IProgressMonitor monitor) throws Exception;