1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-24 08:44:01 +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;
/**
* An interface required if you wish to be called back by the
* system filter wizard, when the user selects a target filter pool.
* @noextend This interface is not intended to be extended by clients.
* An interface required if you wish to be called back by the system filter
* wizard, when the user selects a target filter pool.
*
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ISystemFilterPoolSelectionValidator {

View file

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

View file

@ -19,15 +19,16 @@
package org.eclipse.rse.core.filters;
/**
* The system filter wizard allows callers to pass a list of wrapper objects
* for the user to select a filter pool. Effectively, this prompting for
* euphemisms to filter pools. This requires an array of wrapper objects,
* and requires replacement text for the pool prompt and tooltip text, and
* the verbiage above it.
* The system filter wizard allows callers to pass a list of wrapper objects for
* the user to select a filter pool. Effectively, this prompting for euphemisms
* to filter pools. This requires an array of wrapper objects, and requires
* replacement text for the pool prompt and tooltip text, and the verbiage above
* it.
* <p>
* This is all encapsulated in this interface. There is also a class offered
* 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 {

View file

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

View file

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