com.mindoo.remote.api.org.eclipse.core.runtime
Interface IRemoteQualifiedName


public interface IRemoteQualifiedName

Remote API Wrapper for the org.eclipse.core.runtime.QualifiedName (Online documentation)

Original documentation:
Qualified names are two-part names: qualifier and local name. The qualifier must be in URI form (see RFC2396). Note however that the qualifier may be null if the default name space is being used. The empty string is not a valid local name.


Method Summary
 boolean equalsName(java.lang.Object obj)
          Returns whether this qualified name is equivalent to the given object.
 java.lang.String getLocalName()
          Returns the local part of this name.
 java.lang.String getQualifier()
          Returns the qualifier part for this qualified name, or null if none.
 

Method Detail

getLocalName

java.lang.String getLocalName()
                              throws RemoteEclipseAPIException
Returns the local part of this name.

Returns:
the local name string
Throws:
RemoteEclipseAPIException

getQualifier

java.lang.String getQualifier()
                              throws RemoteEclipseAPIException
Returns the qualifier part for this qualified name, or null if none.

Returns:
the qualifier string, or null
Throws:
RemoteEclipseAPIException

equalsName

boolean equalsName(java.lang.Object obj)
                   throws RemoteEclipseAPIException
Returns whether this qualified name is equivalent to the given object.

Qualified names are equal if and only if they have the same qualified parts and local parts. Qualified names are not equal to objects other than qualified names.

Parameters:
obj - the object to compare to
Returns:
true if these are equivalent qualified names, and false otherwise
Throws:
RemoteEclipseAPIException