1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-21 07:05:58 +02:00

[cleanup] remove warnings, javadoc

This commit is contained in:
David Dykstal 2007-01-02 14:05:03 +00:00
parent b9e4d417a4
commit 29deee5ca5

View file

@ -28,17 +28,11 @@ package org.eclipse.rse.core.subsystems;
* The following features are supported: * The following features are supported:
* <ul> * <ul>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerLaunchType <em>Server Launch Type</em>}</li> * <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerLaunchType <em>Server Launch Type</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getPort <em>Port</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getRexecPort <em>Rexec Port</em>}</li> * <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getRexecPort <em>Rexec Port</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getDaemonPort <em>Daemon Port</em>}</li> * <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getDaemonPort <em>Daemon Port</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerPath <em>Server Path</em>}</li> * <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerPath <em>Server Path</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerScript <em>Server Script</em>}</li> * <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getServerScript <em>Server Script</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getIbmAttributes <em>Ibm Attributes</em>}</li>
* <li>{@link org.eclipse.rse.core.subsystems.IRemoteServerLauncher#getRestrictedTypes <em>Restricted Types</em>}</li>
* </ul> * </ul>
* </p>
*
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getIBMServerLauncher()
*/ */
public interface IRemoteServerLauncher extends IServerLauncherProperties{ public interface IRemoteServerLauncher extends IServerLauncherProperties{
@ -53,10 +47,7 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Server Launch Type</em>' attribute. * @return the value of the '<em>Server Launch Type</em>' attribute.
* @see org.eclipse.rse.core.subsystems.ServerLaunchType * @see org.eclipse.rse.core.subsystems.ServerLaunchType
* @see #isSetServerLaunchType()
* @see #unsetServerLaunchType()
* @see #setServerLaunchType(ServerLaunchType) * @see #setServerLaunchType(ServerLaunchType)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getIBMServerLauncher_ServerLaunchType()
* @model unsettable="true" * @model unsettable="true"
* @generated * @generated
*/ */
@ -70,8 +61,6 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @param value the new value of the '<em>Server Launch Type</em>' attribute. * @param value the new value of the '<em>Server Launch Type</em>' attribute.
* @see org.eclipse.rse.core.subsystems.ServerLaunchType * @see org.eclipse.rse.core.subsystems.ServerLaunchType
* @see #isSetServerLaunchType()
* @see #unsetServerLaunchType()
* @see #getServerLaunchType() * @see #getServerLaunchType()
* @generated * @generated
*/ */
@ -86,8 +75,7 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
* </p> * </p>
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Rexec Port</em>' attribute. * @return the value of the '<em>Rexec Port</em>' attribute.
* @see #setRexecPort(Integer) * @see #setRexecPort(int)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getIBMServerLauncher_RexecPort()
* @model * @model
* @generated * @generated
*/ */
@ -122,9 +110,6 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Server Path</em>' attribute. * @return the value of the '<em>Server Path</em>' attribute.
* @see #setServerPath(String) * @see #setServerPath(String)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getIBMServerLauncher_ServerPath()
* @model
* @generated
*/ */
String getServerPath(); String getServerPath();
@ -148,9 +133,6 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Server Script</em>' attribute. * @return the value of the '<em>Server Script</em>' attribute.
* @see #setServerScript(String) * @see #setServerScript(String)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getIBMServerLauncher_ServerScript()
* @model
* @generated
*/ */
String getServerScript(); String getServerScript();
@ -185,11 +167,11 @@ public interface IRemoteServerLauncher extends IServerLauncherProperties{
/** /**
* This methods returns the enablement state per server launch type. * This methods returns the enablement state per server launch type.
* If {@link #enableServerLaunchType(ServerLaunchType,boolean)} has not been * If {@link #setServerLaunchType(ServerLaunchType)} has not been
* called for this server launch type, then we defer to the subsystem factory's * called for this server launch type, then we defer to the subsystem factory's
* method: * method:
* {@link org.eclipse.rse.core.subsystems.SubSystemConfiguration#supportsServerLaunchType(ServerLaunchType)}. * {@link org.eclipse.rse.core.subsystems.ISubSystemConfiguration#supportsServerLaunchType(ServerLaunchType)}.
* @see org.eclipse.rse.core.subsystems.ServerLaunchType * @see org.eclipse.rse.core.subsystems.ServerLaunchType
*/ */
public boolean isEnabledServerLaunchType(ServerLaunchType serverLaunchType); public boolean isEnabledServerLaunchType(ServerLaunchType serverLaunchType);
} // IBMServerLauncher }