Packages

c

scala.xml.transform

BasicTransformer

abstract class BasicTransformer extends (Node) ⇒ Node

A class for XML transformations.

Version

1.0

Linear Supertypes
(Node) ⇒ Node, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicTransformer
  2. Function1
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BasicTransformer()

Value Members

  1. def andThen[A](g: (Node) ⇒ A): (Node) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def apply(n: Node): Node
    Definition Classes
    BasicTransformer → Function1
  3. def compose[A](g: (A) ⇒ Node): (A) ⇒ Node
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  4. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  5. def transform(n: Node): Seq[Node]
  6. def transform(ns: Seq[Node]): Seq[Node]

    Call transform(Node) to each node in ns, yield ns if nothing changes, otherwise a new sequence of concatenated results.

  7. def transform(it: Iterator[Node], nb: NodeBuffer): Seq[Node]

    Call transform(Node) for each node in ns, append results to NodeBuffer.