summaryrefslogtreecommitdiff
path: root/test/files/xml/lnk.scala
blob: 962c2f91491a1f8a2ddf880ff79177ab916f7f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// $Id$

import scala.xml.Node;
import dtd._;

object Test {

  // 3 ways to construct your data
  def main(args:Array[String]) = {

    val n = Node.NoAttributes ;
    // construct data using original Element name
    //val b: Node = dtd._factory.get("link").match { case Some(x) => x(Nil,null)}; // safe
    // !!! System.out.println(b.toXML);

    // construct data using constructor
    val c = Link(n + "target" -> "http://www.scala.org", Name(n, scala.xml.Text("hello-link")));
    //c.getAttribs.update("target", "http://www.scala.org");
    System.out.println( c );

    // construct data using loading from a file
    val lnkDB = load(args(0));
    System.out.println( lnkDB );
  }

}