1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 22:55:51 +02:00

[cleanup] remove warnings

This commit is contained in:
David Dykstal 2007-01-02 14:11:30 +00:00
parent 5261957269
commit daba2d8c1a
5 changed files with 8 additions and 21 deletions

View file

@ -57,7 +57,7 @@ public interface IHost extends IRSEModelObject
/** /**
* Return the subsystem instances under this connection. * Return the subsystem instances under this connection.
* Just a shortcut to {@link org.eclipse.rse.model.ISystemRegistry#getSubSystems(IHost)} * Just a shortcut to {@link org.eclipse.rse.core.model.ISystemRegistry#getSubSystems(IHost)}
*/ */
public ISubSystem[] getSubSystems(); public ISubSystem[] getSubSystems();
@ -187,9 +187,6 @@ public interface IHost extends IRSEModelObject
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Offline</em>' attribute. * @return the value of the '<em>Offline</em>' attribute.
* @see #setOffline(boolean) * @see #setOffline(boolean)
* @see org.eclipse.rse.model.ModelPackage#getSystemConnection_Offline()
* @model
* @generated
*/ */
boolean isOffline(); boolean isOffline();

View file

@ -170,7 +170,6 @@ public interface IConnectorService extends IRSEModelObject
* If not currently set in transient memory, prompts the user for a password. * If not currently set in transient memory, prompts the user for a password.
* <p> * <p>
* Throws InterruptedException if user is prompted and user cancels that prompt. * Throws InterruptedException if user is prompted and user cancels that prompt.
* @param shell parent for the prompt dialog if needed. Can be null if know password exists.
* @param forcePrompt forces the prompt dialog to be displayed even if the password is currently * @param forcePrompt forces the prompt dialog to be displayed even if the password is currently
* in memory. * in memory.
*/ */
@ -262,7 +261,7 @@ public interface IConnectorService extends IRSEModelObject
/** /**
* Returns the value of the '<em><b>Remote Server Launcher</b></em>' containment reference. * Returns the value of the '<em><b>Remote Server Launcher</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.rse.core.subsystems.IServerLauncherProperties#getParentSubSystem <em>Parent Sub System</em>}'. * It is bidirectional and its opposite is '{@link org.eclipse.rse.core.subsystems.IServerLauncherProperties#getConnectorService()}'.
* <!-- begin-user-doc --> * <!-- begin-user-doc -->
* <p> * <p>
* Get the remote server launcher, which may be null. This an optional object containing * Get the remote server launcher, which may be null. This an optional object containing
@ -270,22 +269,21 @@ public interface IConnectorService extends IRSEModelObject
* </p> * </p>
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @return the value of the '<em>Remote Server Launcher</em>' containment reference. * @return the value of the '<em>Remote Server Launcher</em>' containment reference.
* @see #setRemoteServerLauncher(IServerLauncherProperties) * @see #setRemoteServerLauncherProperties(IServerLauncherProperties)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getSubSystem_RemoteServerLauncher() * @see org.eclipse.rse.core.subsystems.IServerLauncherProperties#getConnectorService()
* @see org.eclipse.rse.core.subsystems.IServerLauncherProperties#getParentSubSystem
* @model opposite="parentSubSystem" containment="true" * @model opposite="parentSubSystem" containment="true"
* @generated * @generated
*/ */
IServerLauncherProperties getRemoteServerLauncherProperties(); IServerLauncherProperties getRemoteServerLauncherProperties();
/** /**
* Sets the value of the '{@link org.eclipse.rse.core.subsystems.ISubSystem#getRemoteServerLauncher <em>Remote Server Launcher</em>}' containment reference. * Sets the value of the '{@link org.eclipse.rse.core.subsystems.IConnectorService#getRemoteServerLauncherProperties()}' containment reference.
* <!-- begin-user-doc --> * <!-- begin-user-doc -->
* Set the remote server launcher, which is an optional object containing * Set the remote server launcher, which is an optional object containing
* properties used to launch the remote server that communicates with this subsystem. * properties used to launch the remote server that communicates with this subsystem.
* <!-- end-user-doc --> * <!-- end-user-doc -->
* @param value the new value of the '<em>Remote Server Launcher</em>' containment reference. * @param value the new value of the '<em>Remote Server Launcher</em>' containment reference.
* @see #getRemoteServerLauncher() * @see #getRemoteServerLauncherProperties()
* @generated * @generated
*/ */
void setRemoteServerLauncherProperties(IServerLauncherProperties value); void setRemoteServerLauncherProperties(IServerLauncherProperties value);

View file

@ -27,8 +27,6 @@ public interface IRemoteObjectResolver
* <p> * <p>
* Return the remote object within the subsystem that corresponds to * Return the remote object within the subsystem that corresponds to
* the specified unique ID. * the specified unique ID.
* <p>
* This is the functional opposite of {@link org.eclipse.rse.ui.view.ISystemRemoteElementAdapter#getAbsoluteName(Object)}.
*/ */
public Object getObjectWithAbsoluteName(String key) throws Exception; public Object getObjectWithAbsoluteName(String key) throws Exception;
} }

View file

@ -136,8 +136,6 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
/** /**
* Return true if you support user-defined actions for the remote system objects returned from expansion of * Return true if you support user-defined actions for the remote system objects returned from expansion of
* subsystems created by this subsystem factory * subsystems created by this subsystem factory
* @see #getActionSubSystem(ISubSystem)
* @see #supportsUserDefinedActions(ISelection)
* <p>Returns false in default implementation. * <p>Returns false in default implementation.
*/ */
public boolean supportsUserDefinedActions(); public boolean supportsUserDefinedActions();
@ -145,7 +143,6 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
/** /**
* Return true if you support compile actions for the remote system objects returned from expansion of * Return true if you support compile actions for the remote system objects returned from expansion of
* subsystems created by this subsystem factory. * subsystems created by this subsystem factory.
* @see #getCompileManager()
* <p>Returns false in default implementation. * <p>Returns false in default implementation.
*/ */
public boolean supportsCompileActions(); public boolean supportsCompileActions();
@ -172,7 +169,6 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
* the server launcher to decide if a given remote server launch type is supported or not. * the server launcher to decide if a given remote server launch type is supported or not.
* <br> We return true by default. * <br> We return true by default.
* @see org.eclipse.rse.core.subsystems.ServerLaunchType * @see org.eclipse.rse.core.subsystems.ServerLaunchType
* @see #getServerLauncherForm(Shell, ISystemMessageLine)
*/ */
public boolean supportsServerLaunchType(ServerLaunchType serverLaunchType); public boolean supportsServerLaunchType(ServerLaunchType serverLaunchType);
@ -245,7 +241,7 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
/** /**
* Return the category this subsystem factory subscribes to. * Return the category this subsystem factory subscribes to.
* @see org.eclipse.rse.model.ISubSystemConfigurationCategories * @see org.eclipse.rse.core.model.ISubSystemConfigurationCategories
*/ */
public String getCategory(); public String getCategory();
/** /**
@ -353,12 +349,10 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
public void updateSubSystem(ISubSystem subsystem, boolean updateUserId, String userId, boolean updatePort, int port); public void updateSubSystem(ISubSystem subsystem, boolean updateUserId, String userId, boolean updatePort, int port);
/** /**
* Update the port for the given subsystem instance. * Update the port for the given subsystem instance.
* Shortcut to {@link #updateSubSystem(Shell, ISubSystem, boolean, String, boolean, int)}
*/ */
public void setSubSystemPort(ISubSystem subsystem, int port); public void setSubSystemPort(ISubSystem subsystem, int port);
/** /**
* Update the user ID for the given subsystem instance. * Update the user ID for the given subsystem instance.
* Shortcut to {@link #updateSubSystem(Shell, ISubSystem, boolean, String, boolean, int)}
*/ */
public void setSubSystemUserId(ISubSystem subsystem, String userId); public void setSubSystemUserId(ISubSystem subsystem, String userId);

View file

@ -55,7 +55,7 @@ public interface ISubSystemConfigurationProxy
/** /**
* Return value of the <samp>category</samp> xml attribute. * Return value of the <samp>category</samp> xml attribute.
* Return the category this subsystem configuration subscribes to. * Return the category this subsystem configuration subscribes to.
* @see org.eclipse.rse.model.ISubSystemConfigurationCategories * @see org.eclipse.rse.core.model.ISubSystemConfigurationCategories
*/ */
public String getCategory(); public String getCategory();