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

[api] Review API tooling annotations

This commit is contained in:
Uwe Stieber 2008-04-18 16:36:41 +00:00
parent a2d40ccafa
commit ab3be4371b
5 changed files with 8 additions and 9 deletions

View file

@ -17,7 +17,9 @@ import org.eclipse.rse.ui.messages.ISystemMessageLine;
/**
* Message line interface implementation which forwards the calls
* to the associated parent dialog page.
* to the associated parent dialog page.
*
* @noextend This class is not intended to be subclassed by clients.
*/
public class RSEDialogPageMessageLine implements ISystemMessageLine {
private final DialogPage page;

View file

@ -48,6 +48,8 @@ import org.eclipse.ui.IWorkbench;
/**
* The New Connection wizard. This wizard allows users to create new RSE connections.
*
* @noextend This class is not intended to be subclassed by clients.
*/
public class RSEMainNewConnectionWizard extends Wizard implements INewWizard, ISelectionProvider {
/**

View file

@ -27,6 +27,9 @@ import org.eclipse.rse.ui.wizards.registries.RSEAbstractWizardRegistry;
/**
* RSE New connection wizard registry implementation.
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
public class RSENewConnectionWizardRegistry extends RSEAbstractWizardRegistry {
private final Map cache = new HashMap();

View file

@ -13,10 +13,6 @@ package org.eclipse.rse.ui.wizards.registries;
/**
* Common wizard category descriptor used by the <code>RSEAbstractWizardRegistry</code>
* to handle wizard categories contributed via a wizard extension point.
* <p>
* The <code>IRSEWizardCategory</code> interface is based on <code>
* org.eclipse.ui.wizards.IWizardCategory</code> interface which is
* unfortunately marked as not intended to be implemented by clients!
*/
public interface IRSEWizardCategory extends IRSEWizardRegistryElement {

View file

@ -16,10 +16,6 @@ import org.eclipse.swt.graphics.Image;
/**
* Common wizard descriptor used by the <code>RSEAbstractWizardRegistry</code>
* to handle wizards contributed via a wizard extension point.
* <p>
* The <code>IRSEWizardDescriptor</code> interface is based on <code>
* org.eclipse.ui.wizards.IWizardDescriptor</code> interface which is
* unfortunately marked as not intended to be implemented by clients!
*/
public interface IRSEWizardDescriptor extends IRSEWizardRegistryElement {