BasicTransformer

scala.xml.transform.BasicTransformer
abstract class BasicTransformer extends Node => Node

A class for XML transformations.

Attributes

Graph
Supertypes
trait Node => Node
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

override def apply(n: Node): Node

Attributes

Definition Classes

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

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

Attributes

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.

Attributes

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

Inherited methods

def andThen[A](g: Node => A): T1 => A

Attributes

Inherited from:
Function1
def compose[A](g: A => Node): A => R

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1