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 Type
    Method
    Description
    Returns the qualified XML name of this element.
    boolean
    Returns true if the content of this element is nil, false otherwise.
    void
    setNil(boolean aIsNil)
    Sets whether the content of this element is nil.
    void
    Sets the qualified XML name of this element.
  • Method Details

    • setXMLName

      void setXMLName(QName aName)
      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()
      Returns true 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.