1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-24 00:33:48 +02:00

[cleanup] @noimplement instead of @noextend interfaces

This commit is contained in:
Martin Oberhuber 2008-05-05 17:48:50 +00:00
parent d97001d12f
commit c26154c003
5 changed files with 93 additions and 89 deletions

View file

@ -20,9 +20,10 @@ package org.eclipse.rse.core.filters;
import org.eclipse.rse.services.clientserver.messages.SystemMessage; import org.eclipse.rse.services.clientserver.messages.SystemMessage;
/** /**
* An interface required if you wish to be called back by the * An interface required if you wish to be called back by the system filter
* system filter wizard, when the user selects a target filter pool. * wizard, when the user selects a target filter pool.
* @noextend This interface is not intended to be extended by clients. *
* @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ISystemFilterPoolSelectionValidator { public interface ISystemFilterPoolSelectionValidator {

View file

@ -18,9 +18,10 @@
package org.eclipse.rse.core.filters; package org.eclipse.rse.core.filters;
/** /**
* The system filter wizard allows callers to pass a list of wrapper objects * The system filter wizard allows callers to pass a list of wrapper objects for
* for the user to select a filter pool. * the user to select a filter pool.
* @noextend This interface is not intended to be extended by clients. *
* @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ISystemFilterPoolWrapper { public interface ISystemFilterPoolWrapper {

View file

@ -19,15 +19,16 @@
package org.eclipse.rse.core.filters; package org.eclipse.rse.core.filters;
/** /**
* The system filter wizard allows callers to pass a list of wrapper objects * The system filter wizard allows callers to pass a list of wrapper objects for
* for the user to select a filter pool. Effectively, this prompting for * the user to select a filter pool. Effectively, this prompting for euphemisms
* euphemisms to filter pools. This requires an array of wrapper objects, * to filter pools. This requires an array of wrapper objects, and requires
* and requires replacement text for the pool prompt and tooltip text, and * replacement text for the pool prompt and tooltip text, and the verbiage above
* the verbiage above it. * it.
* <p> * <p>
* This is all encapsulated in this interface. There is also a class offered * This is all encapsulated in this interface. There is also a class offered
* that implements all this and is populated via setters. * that implements all this and is populated via setters.
* @noextend This interface is not intended to be extended by clients. *
* @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ISystemFilterPoolWrapperInformation { public interface ISystemFilterPoolWrapperInformation {

View file

@ -18,9 +18,10 @@
package org.eclipse.rse.core.model; package org.eclipse.rse.core.model;
/** /**
* Common interface for representing different contents types of * Common interface for representing different contents types of artifacts that
* artifacts that can be stored in an IRemoteContainer. * can be stored in an IRemoteContainer.
* @noextend This interface is not intended to be extended by clients. *
* @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ISystemContentsType { public interface ISystemContentsType {
/* /*

View file

@ -507,7 +507,7 @@ public class SystemViewRemoteSearchResultAdapter extends AbstractSystemViewAdapt
/** /**
* Returns the unique property descriptors for a search result * Returns the unique property descriptors for a search result
*/ */
protected org.eclipse.ui.views.properties.IPropertyDescriptor[] internalGetPropertyDescriptors() protected IPropertyDescriptor[] internalGetPropertyDescriptors()
{ {
if (_propertyDescriptors == null) if (_propertyDescriptors == null)
{ {