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.booleanisNil()Returnstrueif the content of this element is nil,falseotherwise.voidsetNil(boolean aIsNil) Sets whether the content of this element is nil.voidsetXMLName(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()Returnstrueif the content of this element is nil,falseotherwise.- Returns:
trueif the content of this element is nil,falseotherwise.
-
setNil
void setNil(boolean aIsNil) Sets whether the content of this element is nil.- Parameters:
aIsNil- whether the content of this element is nil.
-