Interface XmlDocument

    • Method Detail

      • children

        Iterable children()
        An ordered list of child information items, in document order. The list contains exactly one element information item. The list also contains one processing instruction information item for each processing instruction outside the document element, and one comment information item for each comment outside the document element. Processing instructions and comments within the DTD are excluded. If there is a document type declaration, the list also contains a document type declaration information item.
      • getDocumentElement

        XmlElement getDocumentElement()
      • notations

        Iterable notations()
        An unordered set of notation information items, one for each notation declared in the DTD.
      • unparsedEntities

        Iterable unparsedEntities()
        An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.
      • getBaseUri

        String getBaseUri()
      • getCharacterEncodingScheme

        String getCharacterEncodingScheme()
      • setCharacterEncodingScheme

        void setCharacterEncodingScheme​(String characterEncoding)
      • isStandalone

        Boolean isStandalone()
      • getVersion

        String getVersion()
      • isAllDeclarationsProcessed

        boolean isAllDeclarationsProcessed()
      • setDocumentElement

        void setDocumentElement​(XmlElement rootElement)
      • addChild

        void addChild​(Object child)
      • insertChild

        void insertChild​(int pos,
                         Object child)
      • removeAllChildren

        void removeAllChildren()
      • removeAllUnparsedEntities

        void removeAllUnparsedEntities()
      • removeAllNotations

        void removeAllNotations()