summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-11-25 16:03:02 +0000
committerburaq <buraq@epfl.ch>2003-11-25 16:03:02 +0000
commitbb03dbdd47581df3da8bd785f8018e06789f4c85 (patch)
tree1cc45f1ad3f58ce64e08fc3893e5e16e1e7b32d8 /sources
parent8faa7e18267c2b6262c721407cb58617534ded98 (diff)
downloadscala-bb03dbdd47581df3da8bd785f8018e06789f4c85.tar.gz
scala-bb03dbdd47581df3da8bd785f8018e06789f4c85.tar.bz2
scala-bb03dbdd47581df3da8bd785f8018e06789f4c85.zip
attrib node
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/xml/AttributedNode.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/sources/scala/xml/AttributedNode.scala b/sources/scala/xml/AttributedNode.scala
new file mode 100644
index 0000000000..608a0c96e1
--- /dev/null
+++ b/sources/scala/xml/AttributedNode.scala
@@ -0,0 +1,8 @@
+package scala.xml ;
+
+abstract class AttributedNode extends Node {
+
+val attribHashCode:int;
+def attributes:Map[String,String];
+
+}