public interface OMNamedInformationItem extends OMInformationItem
Modifier and Type | Method and Description |
---|---|
String |
getLocalName()
Get the local name of the information item.
|
OMNamespace |
getNamespace()
Get the namespace this information item is part of.
|
String |
getNamespaceURI()
Get the namespace URI of this information item.
|
String |
getPrefix()
Get the prefix of this information item.
|
QName |
getQName()
Get the QName of this information item.
|
void |
setLocalName(String localName)
Set the local name of this information item.
|
clone, getOMFactory
String getLocalName()
void setLocalName(String localName)
localName
- the new local name of the information itemOMNamespace getNamespace()
null
if the information item
has no namespace. Note that this implies that the method never returns an
OMNamespace
object with both prefix and namespace URI set to the empty
string. In addition, the prefix of the returned OMNamespace
object (if any)
is never null
: if a null
prefix was specified when creating
this information item, then a prefix has been automatically assigned and the assigned
prefix is returned.QName getQName()
QName
for the information itemString getPrefix()
Node.getPrefix()
(when called on an Element
or Attr
).null
if the information item has
no prefixString getNamespaceURI()
Node.getNamespaceURI()
(when called on an
Element
or Attr
).null
if the information
item has no namespaceCopyright © 2004–2022 The Apache Software Foundation. All rights reserved.