1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +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. * Interface for a system type. Constants are defined for various system types.
* These constants are kept in sync with definitions in plugin.xml. * These constants are kept in sync with definitions in plugin.xml.
* * <p>
* This interface is not intended to be implemented directly by clients. * This interface is not intended to be implemented by clients. System type
* Clients should extend the abstract base class {@link AbstractRSESystemType} instead. * implementations must subclass {@link AbstractRSESystemType} rather than
* implementing this interface directly.
* </p>
*/ */
public interface IRSESystemType extends IAdaptable { public interface IRSESystemType extends IAdaptable {

View file

@ -50,8 +50,10 @@ import org.eclipse.rse.internal.core.RSECoreRegistry;
* The idea here is that connections are grouped by system profile. At any * 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 * time, there is a user-specified number of profiles "active" and connections
* from each active profile are worked with. * from each active profile are worked with.
* </p>
* <p> * <p>
* This interface is not intended to be implemented by clients. * This interface is not intended to be implemented by clients.
* </p>
*/ */
public interface ISystemRegistry extends ISchedulingRule, IAdaptable { 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. * Registry and control center for RSE UI related operations.
* * <p>
* This interface is not intended to be implemented by clients. * This interface is not intended to be implemented by clients.
* </p>
*/ */
public interface ISystemRegistryUI public interface ISystemRegistryUI
extends ISystemShellProvider, ISystemViewInputProvider { extends ISystemShellProvider, ISystemViewInputProvider {