1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

[doc] improve javadoc for IConnectorService

This commit is contained in:
Martin Oberhuber 2007-05-11 13:11:18 +00:00
parent 29a39c85ae
commit ca4b641ba5
2 changed files with 10 additions and 8 deletions

View file

@ -362,12 +362,14 @@ public interface IConnectorService extends IRSEModelObject {
IServerLauncher getRemoteServerLauncher(); IServerLauncher getRemoteServerLauncher();
/** /**
* Test if this connector service requires a password.
* @return true if this connector service supports passwords and * @return true if this connector service supports passwords and
* requires a password to connect to its target system. * requires a password to connect to its target system.
*/ */
boolean requiresPassword(); boolean requiresPassword();
/** /**
* Test if this connector service requires a user id.
* @return true if this connector service understands the concept of a * @return true if this connector service understands the concept of a
* user id and requires one to connect to its target system. * user id and requires one to connect to its target system.
*/ */

View file

@ -43,21 +43,21 @@ public abstract class StandardConnectorService extends AuthenticatingConnectorSe
} }
/** /**
* Indicates if this connector service understands passwords. * Determines if this connector service understand the concept of a password.
* This implementation always returns true. * This implementation always returns true.
* Override if necessary. * Override if necessary.
* @return true
* @see org.eclipse.rse.core.subsystems.IConnectorService#supportsPassword() * @see org.eclipse.rse.core.subsystems.IConnectorService#supportsPassword()
* @return true
*/ */
public boolean supportsPassword() { public boolean supportsPassword() {
return true; return true;
} }
/** /**
* @see org.eclipse.rse.core.subsystems.IConnectorService#requiresPassword() * Test if this connector service requires a password.
* Indicates if this connector service requires a password.
* This implementation always returns true. * This implementation always returns true.
* Override if necessary. * Override if necessary.
* @see org.eclipse.rse.core.subsystems.IConnectorService#requiresPassword()
* @return true * @return true
*/ */
public boolean requiresPassword() { public boolean requiresPassword() {
@ -65,21 +65,21 @@ public abstract class StandardConnectorService extends AuthenticatingConnectorSe
} }
/** /**
* Indicates if this connector service understands user ids. * Reports if this connector service can use a user identifier.
* This implementation always returns true. * This implementation always returns true.
* Override if necessary. * Override if necessary.
* @return true
* @see org.eclipse.rse.core.subsystems.IConnectorService#supportsUserId() * @see org.eclipse.rse.core.subsystems.IConnectorService#supportsUserId()
* @return true
*/ */
public boolean supportsUserId() { public boolean supportsUserId() {
return true; return true;
} }
/** /**
* @see org.eclipse.rse.core.subsystems.IConnectorService#requiresUserId() * Test if this connector service requires a user id.
* Indicates if this connector service requires a user id.
* This implementation always returns true. * This implementation always returns true.
* Override if necessary. * Override if necessary.
* @see org.eclipse.rse.core.subsystems.IConnectorService#requiresUserId()
* @return true * @return true
*/ */
public boolean requiresUserId() { public boolean requiresUserId() {