summaryrefslogtreecommitdiff
path: root/sources/ch
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-08-21 13:57:23 +0000
committermichelou <michelou@epfl.ch>2003-08-21 13:57:23 +0000
commit31e4cd7266114d749dcbb51d9387427d46c7b236 (patch)
tree67d0d4f9081eba4eb9d1ae287aaadf7ab157b05d /sources/ch
parenta6cccc16e3680d90076bf9267fa5626eb6fbe1c5 (diff)
downloadscala-31e4cd7266114d749dcbb51d9387427d46c7b236.tar.gz
scala-31e4cd7266114d749dcbb51d9387427d46c7b236.tar.bz2
scala-31e4cd7266114d749dcbb51d9387427d46c7b236.zip
- renamed Attr to XMLAttribute
Diffstat (limited to 'sources/ch')
-rw-r--r--sources/ch/epfl/lamp/util/XMLAttribute.java (renamed from sources/ch/epfl/lamp/util/Attr.java)4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/ch/epfl/lamp/util/Attr.java b/sources/ch/epfl/lamp/util/XMLAttribute.java
index 89e887a3f8..309a4cc621 100644
--- a/sources/ch/epfl/lamp/util/Attr.java
+++ b/sources/ch/epfl/lamp/util/XMLAttribute.java
@@ -10,7 +10,7 @@ package ch.epfl.lamp.util;
/** An XML attribute.
*/
-public class Attr {
+public class XMLAttribute {
/** Name of the attribute.
*/
@@ -20,7 +20,7 @@ public class Attr {
*/
public String value;
- public Attr(String name, String value) {
+ public XMLAttribute(String name, String value) {
this.name = name;
this.value = value;
}