1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-19 14:15:50 +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.
* 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();
@ -187,9 +187,6 @@ public interface IHost extends IRSEModelObject
* <!-- end-user-doc -->
* @return the value of the '<em>Offline</em>' attribute.
* @see #setOffline(boolean)
* @see org.eclipse.rse.model.ModelPackage#getSystemConnection_Offline()
* @model
* @generated
*/
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.
* <p>
* 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
* 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.
* 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 -->
* <p>
* Get the remote server launcher, which may be null. This an optional object containing
@ -270,22 +269,21 @@ public interface IConnectorService extends IRSEModelObject
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Remote Server Launcher</em>' containment reference.
* @see #setRemoteServerLauncher(IServerLauncherProperties)
* @see org.eclipse.rse.core.subsystems.SubsystemsPackage#getSubSystem_RemoteServerLauncher()
* @see org.eclipse.rse.core.subsystems.IServerLauncherProperties#getParentSubSystem
* @see #setRemoteServerLauncherProperties(IServerLauncherProperties)
* @see org.eclipse.rse.core.subsystems.IServerLauncherProperties#getConnectorService()
* @model opposite="parentSubSystem" containment="true"
* @generated
*/
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 -->
* Set the remote server launcher, which is an optional object containing
* properties used to launch the remote server that communicates with this subsystem.
* <!-- end-user-doc -->
* @param value the new value of the '<em>Remote Server Launcher</em>' containment reference.
* @see #getRemoteServerLauncher()
* @see #getRemoteServerLauncherProperties()
* @generated
*/
void setRemoteServerLauncherProperties(IServerLauncherProperties value);

View file

@ -27,8 +27,6 @@ public interface IRemoteObjectResolver
* <p>
* Return the remote object within the subsystem that corresponds to
* 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;
}

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
* subsystems created by this subsystem factory
* @see #getActionSubSystem(ISubSystem)
* @see #supportsUserDefinedActions(ISelection)
* <p>Returns false in default implementation.
*/
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
* subsystems created by this subsystem factory.
* @see #getCompileManager()
* <p>Returns false in default implementation.
*/
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.
* <br> We return true by default.
* @see org.eclipse.rse.core.subsystems.ServerLaunchType
* @see #getServerLauncherForm(Shell, ISystemMessageLine)
*/
public boolean supportsServerLaunchType(ServerLaunchType serverLaunchType);
@ -245,7 +241,7 @@ public interface ISubSystemConfiguration extends ISystemFilterPoolManagerProvide
/**
* Return the category this subsystem factory subscribes to.
* @see org.eclipse.rse.model.ISubSystemConfigurationCategories
* @see org.eclipse.rse.core.model.ISubSystemConfigurationCategories
*/
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);
/**
* 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);
/**
* 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);

View file

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