eu.cdevreeze.yaidom

dom

package dom

Wrapper around class org.w3c.dom.Element, adapting it to the eu.cdevreeze.yaidom.queryapi.ElemLike API.

This wrapper is not thread-safe, and should only be used if the immutable element classes such as eu.cdevreeze.yaidom.simple.Elem are not the best fit.

Such scenarios could be as follows:

Yet be aware that the advantages of immutability and thread-safety (offered by immutable Elem classes) are lost when using this wrapper API. Mutable DOM trees are also very easy to break, even via the ElemLike API, if element predicates with side-effects are used.

To explain the "round-tripping" item above, note that class eu.cdevreeze.yaidom.simple.Elem considers attributes in an element unordered, let alone namespace declarations. That is consistent with the XML Infoset specification, but can sometimes be impractical. Using org.w3c.dom.Element instances, parsed from XML input sources, chances are that this order is retained.

There are of course limitations to what formatting data is retained in a DOM tree. A good example is the short versus long form of an empty element. Typically parsers do not pass any information about this distinction, so it is unknown whether the XML input source used the long or short form for an empty element.

It should also be noted that the configuration of XML parsers and serializers can be of substantial influence on the extent that "round-tripping" keeps the XML string the same. Whitespace handling is one such area in which different configurations can lead to quite different "round-tripping" results.

Note that in one way these wrappers are somewhat unnatural: the ElemLike API uses immutable Scala collections everywhere, whereas the elements of those collections are mutable (!) DOM node wrappers. The wrappers are idiomatic Scala in their use of the Scala Collections API, whereas the wrapped DOM nodes come from a distant past, when imperative programming and "mutability everywhere" ruled.

In comparison to XPath against DOM trees, the ElemLike API may be more verbose, but it requires no setup and "result set handling" boilerplate.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. dom
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait CanBeDomDocumentChild extends DomNode with CanBeDocumentChild

  2. final class DomComment extends CanBeDomDocumentChild with Comment

  3. final class DomDocument extends DocumentApi[DomElem]

    Wrapper around org.w3c.dom.Document.

  4. final class DomElem extends CanBeDomDocumentChild with Elem with ScopedElemLike[DomElem] with HasParent[DomElem]

    Wrapper around org.w3c.dom.Element, conforming to the eu.cdevreeze.yaidom.queryapi.ElemLike API.

  5. final class DomEntityRef extends DomNode with EntityRef

  6. sealed trait DomNode extends Node

    Wrappers around org.w3c.dom.Node and subclasses, such that the wrapper around org.w3c.dom.Element conforms to the eu.cdevreeze.yaidom.queryapi.ElemLike API.

  7. final class DomProcessingInstruction extends CanBeDomDocumentChild with ProcessingInstruction

  8. final class DomText extends DomNode with Text

Value Members

  1. object CanBeDomDocumentChild

  2. object DomComment

  3. object DomDocument

  4. object DomElem

  5. object DomEntityRef

  6. object DomNode

  7. object DomProcessingInstruction

  8. object DomText

Inherited from AnyRef

Inherited from Any

Ungrouped