|
Scala example source code file (NoBindingFactoryAdapter.scala)
The Scala NoBindingFactoryAdapter.scala source code/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2011, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ package scala.xml package parsing import factory.NodeFactory /** nobinding adaptor providing callbacks to parser to create elements. * implements hash-consing */ class NoBindingFactoryAdapter extends FactoryAdapter with NodeFactory[Elem] { /** True. Every XML node may contain text that the application needs */ def nodeContainsText(label: String) = true /** From NodeFactory. Constructs an instance of scala.xml.Elem */ protected def create(pre: String, label: String, attrs: MetaData, scope: NamespaceBinding, children: Seq[Node]): Elem = Elem(pre, label, attrs, scope, children: _*) /** From FactoryAdapter. Creates a node. never creates the same node twice, using hash-consing. */ def createNode(pre: String, label: String, attrs: MetaData, scope: NamespaceBinding, children: List[Node]): Elem = Elem(pre, label, attrs, scope, children: _*) /** Creates a text node. */ def createText(text: String) = Text(text) /** Creates a processing instruction. */ def createProcInstr(target: String, data: String) = makeProcInstr(target, data) } Other Scala examples (source code examples)Here is a short list of links related to this Scala NoBindingFactoryAdapter.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.