1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[186640][api] Add IRSESystemType.testProperty()

This commit is contained in:
Martin Oberhuber 2007-05-14 09:14:16 +00:00
parent 3e324a6792
commit 057d5c46a9

View file

@ -10,9 +10,12 @@
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.core; package org.eclipse.rse.core;
import org.eclipse.rse.internal.core.RSECoreRegistry;
/** /**
* Dynamic RSE system types provider interface. * Dynamic RSE system types provider interface.
* @see Extension point {@link org.eclipse.rse.core.systemTypeProviders} *
* See also extension point <code>org.eclipse.rse.core.systemTypeProviders</code>
* *
* Clients may implement this interface. * Clients may implement this interface.
* *
@ -28,6 +31,8 @@ public interface IRSESystemTypeProvider {
* for duplicates (via the system type id). Duplicates will * for duplicates (via the system type id). Duplicates will
* be dropped. * be dropped.
* *
* Returned system types should be subclasses of {@link AbstractRSESystemType}.
*
* @return The list of RSE system types to register or <code>null</code>. * @return The list of RSE system types to register or <code>null</code>.
*/ */
public IRSESystemType[] getSystemTypesForRegistration(); public IRSESystemType[] getSystemTypesForRegistration();