summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-09-29 12:36:12 +0000
committerburaq <buraq@epfl.ch>2004-09-29 12:36:12 +0000
commit5d37e0e3154fa0f4448306dfb409ed648cdf6777 (patch)
tree694d1039bc76e63e1ebe770dddbf32daa44ace68 /sources
parent728d05b38856ae3c9f029f6b91997aa5a135ca07 (diff)
downloadscala-5d37e0e3154fa0f4448306dfb409ed648cdf6777.tar.gz
scala-5d37e0e3154fa0f4448306dfb409ed648cdf6777.tar.bz2
scala-5d37e0e3154fa0f4448306dfb409ed648cdf6777.zip
rmoved
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/NodeFactory.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/sources/scala/xml/NodeFactory.scala b/sources/scala/xml/NodeFactory.scala
deleted file mode 100644
index 25b6782228..0000000000
--- a/sources/scala/xml/NodeFactory.scala
+++ /dev/null
@@ -1,26 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2004, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-** $Id$
-\* */
-package scala.xml ;
-
-abstract class NodeFactory {
-
- val config:NodeFactoryConfig ;
-
- def makeNode( elemName:String, attribs:Map[String,String], chIter:Seq[Node] ):Node;
-
- def makeText( s:String ) = Text( s );
- def makeComment( s:String ):Seq[Comment] =
- if(config.ignoreComments) Nil else List( Comment( s ) );
- def makeProcInstr( t:String, s:String ) = ProcInstr( t, s );
- def makeCharData( s:String ) = CharData( s );
-
-}
-
-
-case class NodeFactoryConfig(ignoreComments:boolean,namespace:Namespace ) ;