1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

[226561] [apidoc] Add API markup to RSE Javadocs where extend / implement is allowed

https://bugs.eclipse.org/bugs/show_bug.cgi?id=226561
This commit is contained in:
David Dykstal 2008-04-30 15:21:57 +00:00
parent 6c6bed23d5
commit a87be8f46d
2 changed files with 12 additions and 0 deletions

View file

@ -12,6 +12,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
* David Dykstal (IBM) - [226561] supply API markup in the javadoc
********************************************************************************/
package org.eclipse.rse.ui.model;
@ -23,6 +24,12 @@ import org.eclipse.rse.core.model.AbstractSystemResourceSet;
import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.ui.view.ISystemViewElementAdapter;
/**
* A SystemRemoteElementResourceSet is used to gather objects together for operations
* that work on multiple objects.
* @noextend This class is not intended to be subclassed by clients.
* Extend {@link AbstractSystemResourceSet} instead.
*/
public class SystemRemoteElementResourceSet extends AbstractSystemResourceSet
{
private ISubSystem _subSystem;

View file

@ -12,6 +12,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
* David Dykstal (IBM) - [226561] supply API markup in the javadoc
********************************************************************************/
package org.eclipse.rse.ui.model;
@ -23,6 +24,10 @@ import org.eclipse.swt.widgets.Item;
/**
* Event object sent to SystemResourceChangeListeners when a
* remote system object is created, changed, removed, etc.
* This extends the base event object to include a reference to an
* orginating viewer.
* @noextend This class is not intended to be subclassed by clients.
* The class is complete as is.
* @see org.eclipse.rse.core.events.ISystemResourceChangeEvents
*/
public class SystemResourceChangeEventUI extends SystemResourceChangeEvent {