summaryrefslogtreecommitdiff
path: root/sources/ch/epfl/lamp/util/XMLAttribute.java
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
commitd3819b93ab8b2de3d5cc35c33b8258ccdb5a931a (patch)
treedfc6f7f497e58ea3321e6f687b11313d2afa86b5 /sources/ch/epfl/lamp/util/XMLAttribute.java
parent0e82079908655682e5140ad521cef0572cb6d2a4 (diff)
downloadscala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.gz
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.bz2
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.zip
Removed old Scalac code in sources and various ...
Removed old Scalac code in sources and various other obsolete elements.
Diffstat (limited to 'sources/ch/epfl/lamp/util/XMLAttribute.java')
-rw-r--r--sources/ch/epfl/lamp/util/XMLAttribute.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/sources/ch/epfl/lamp/util/XMLAttribute.java b/sources/ch/epfl/lamp/util/XMLAttribute.java
deleted file mode 100644
index 309a4cc621..0000000000
--- a/sources/ch/epfl/lamp/util/XMLAttribute.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/* ____ ____ ____ ____ ______ *\
-** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
-** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
-** /_____/\____/\___/\____/____/ **
-\* */
-
-// $Id$
-
-package ch.epfl.lamp.util;
-
-/** An XML attribute.
- */
-public class XMLAttribute {
-
- /** Name of the attribute.
- */
- public String name;
-
- /** Value of the attribute.
- */
- public String value;
-
- public XMLAttribute(String name, String value) {
- this.name = name;
- this.value = value;
- }
-
- public String toString() {
- return name + "=\"" + value + "\"";
- }
-} \ No newline at end of file