org.eclipse.emf.ecore.xmi
Interface NameInfo

All Known Implementing Classes:
NameInfoImpl

public interface NameInfo

This interface represents a qualified name, as specified in "Namespaces in XML" specification.

Since:
2.1.0

Method Summary
 String getLocalPart()
           
 String getNamespaceURI()
           
 String getQualifiedName()
           
 void setLocalPart(String localPart)
           
 void setNamespaceURI(String uri)
           
 void setQualifiedName(String name)
           
 

Method Detail

getLocalPart

public String getLocalPart()
Returns:
the local part of qualified name

setLocalPart

public void setLocalPart(String localPart)
Parameters:
localPart - the local part of qualified name

getQualifiedName

public String getQualifiedName()
Returns:
the qualified name

setQualifiedName

public void setQualifiedName(String name)
Parameters:
name - the qualified name

getNamespaceURI

public String getNamespaceURI()
Returns:
the namespace URI

setNamespaceURI

public void setNamespaceURI(String uri)
Parameters:
uri - the namespace URI

Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.