From 31e4cd7266114d749dcbb51d9387427d46c7b236 Mon Sep 17 00:00:00 2001 From: michelou Date: Thu, 21 Aug 2003 13:57:23 +0000 Subject: - renamed Attr to XMLAttribute --- sources/ch/epfl/lamp/util/Attr.java | 31 ----------------------------- sources/ch/epfl/lamp/util/XMLAttribute.java | 31 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 sources/ch/epfl/lamp/util/Attr.java create mode 100644 sources/ch/epfl/lamp/util/XMLAttribute.java (limited to 'sources/ch') diff --git a/sources/ch/epfl/lamp/util/Attr.java b/sources/ch/epfl/lamp/util/Attr.java deleted file mode 100644 index 89e887a3f8..0000000000 --- a/sources/ch/epfl/lamp/util/Attr.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 Attr { - - /** Name of the attribute. - */ - public String name; - - /** Value of the attribute. - */ - public String value; - - public Attr(String name, String value) { - this.name = name; - this.value = value; - } - - public String toString() { - return name + "=\"" + value + "\""; - } -} \ No newline at end of file diff --git a/sources/ch/epfl/lamp/util/XMLAttribute.java b/sources/ch/epfl/lamp/util/XMLAttribute.java new file mode 100644 index 0000000000..309a4cc621 --- /dev/null +++ b/sources/ch/epfl/lamp/util/XMLAttribute.java @@ -0,0 +1,31 @@ +/* ____ ____ ____ ____ ______ *\ +** / __// __ \/ __// __ \/ ____/ 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 -- cgit v1.2.3