Package com.luciad.format.xml.bind
Interface ILcdXMLElementInfo
- All Known Implementing Classes:
TLcdXMLFeaturedObject
public interface ILcdXMLElementInfo
Contains XML-related information specific to a single XML element.
- Since:
- 9.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the qualified XML name of this element.boolean
isNil()
Returnstrue
if the content of this element is nil,false
otherwise.void
setNil
(boolean aIsNil) Sets whether the content of this element is nil.void
setXMLName
(QName aName) Sets the qualified XML name of this element.
-
Method Details
-
setXMLName
Sets the qualified XML name of this element.- Parameters:
aName
- the name of this element.
-
getXMLName
QName getXMLName()Returns the qualified XML name of this element.- Returns:
- the name of this element.
-
isNil
boolean isNil()Returnstrue
if the content of this element is nil,false
otherwise.- Returns:
true
if the content of this element is nil,false
otherwise.
-
setNil
void setNil(boolean aIsNil) Sets whether the content of this element is nil.- Parameters:
aIsNil
- whether the content of this element is nil.
-