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

[172469] applying patch

This commit is contained in:
David McKnight 2007-02-01 19:51:03 +00:00
parent 086d1ccc19
commit bc939ffa4c
2 changed files with 10 additions and 10 deletions

View file

@ -364,15 +364,6 @@ public abstract class AbstractSystemViewAdapter
*/
public abstract ImageDescriptor getImageDescriptor(Object element);
/**
* <i><b>Abstract</b>. Must be overridden by subclasses.</i><br>
* Return the label for this object.
* @see #getName(Object)
* @see #getAbsoluteName(Object)
*/
public abstract String getText(Object element);
/**
* Return the alternate label for this object. By default this
* just returns the regular label. If a custom label is required,

View file

@ -32,9 +32,18 @@ import org.eclipse.swt.widgets.Shell;
public interface ISystemRemoteElementAdapter extends IRemoteObjectIdentifier
{
/**
* Return the name of this object, which may be different than the display text ({#link #getText(Object)}.
* Return the name of this object, which may be different than
* the display text ({#link #getText(Object)}.
*/
public String getName(Object element);
/**
* Return the label for this object.
* @see #getName(Object)
* @see #getAbsoluteName(Object)
*/
public String getText(Object element);
/**
* Return the fully qualified name of this remote object.
* Unlike getName, this should include the full path to the name.