1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-06 18:13:10 +02:00

Update Javadoc

This commit is contained in:
Martin Oberhuber 2007-05-24 11:05:39 +00:00
parent 210612068c
commit 6244712f3f
3 changed files with 11 additions and 6 deletions

View file

@ -27,9 +27,11 @@ import org.osgi.framework.Bundle;
/**
* Interface for a system type. Constants are defined for various system types.
* These constants are kept in sync with definitions in plugin.xml.
*
* This interface is not intended to be implemented directly by clients.
* Clients should extend the abstract base class {@link AbstractRSESystemType} instead.
* <p>
* This interface is not intended to be implemented by clients. System type
* implementations must subclass {@link AbstractRSESystemType} rather than
* implementing this interface directly.
* </p>
*/
public interface IRSESystemType extends IAdaptable {

View file

@ -48,10 +48,12 @@ import org.eclipse.rse.internal.core.RSECoreRegistry;
* To get it, call the {@link org.eclipse.rse.core.RSECorePlugin#getTheSystemRegistry()}.
* <p>
* The idea here is that connections are grouped by system profile. At any
* time, there is a user-specified number of profiles "active" and connections
* from each active profile are worked with.
* time, there is a user-specified number of profiles "active" and connections
* from each active profile are worked with.
* </p>
* <p>
* This interface is not intended to be implemented by clients.
* </p>
*/
public interface ISystemRegistry extends ISchedulingRule, IAdaptable {

View file

@ -29,8 +29,9 @@ import org.eclipse.swt.widgets.Shell;
/**
* Registry and control center for RSE UI related operations.
*
* <p>
* This interface is not intended to be implemented by clients.
* </p>
*/
public interface ISystemRegistryUI
extends ISystemShellProvider, ISystemViewInputProvider {