summaryrefslogtreecommitdiff
path: root/sources/ch/epfl/lamp/util/XMLAttribute.java
blob: 309a4cc62183b530561e8fdf5ab1aaf252034565 (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
27
28
29
30
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 + "\"";
    }
}