BasicTransformer

abstract class BasicTransformer extends Node => Node

A class for XML transformations.

trait Node => Node
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(n: Node): Node

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

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

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.

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

protected def unchanged(n: Node, ns: Seq[Node]): Boolean

Inherited methods

def andThen[A](g: Node => A): Node => A
Inherited from:
Function1
def compose[A](g: A => Node): A => Node
Inherited from:
Function1
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1