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 Link icon

    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 Link icon

    • setXMLName Link icon

      void setXMLName(QName aName)
      Sets the qualified XML name of this element.
      Parameters:
      aName - the name of this element.
    • getXMLName Link icon

      QName getXMLName()
      Returns the qualified XML name of this element.
      Returns:
      the name of this element.
    • isNil Link icon

      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 Link icon

      void setNil(boolean aIsNil)
      Sets whether the content of this element is nil.
      Parameters:
      aIsNil - whether the content of this element is nil.