| java.lang.Object |
| ↳ |
com.google.gdata.util.common.xml.XmlWriter.Attribute |
Class Overview
The Attribute class represents an XML attribute.
Summary
| Fields |
|
public
final
String |
name |
|
|
public
final
String |
nsAlias |
|
|
public
final
String |
value |
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Fields
public
final
String
nsAlias
public
final
String
value
Public Constructors
public
XmlWriter.Attribute
(String name, String value)
Constructs an unqualified XML attribute.
Parameters
| name
| The attribute name. |
| value
| The attribute value.
|
public
XmlWriter.Attribute
(String nsAlias, String name, String value)
Constructs an namespace-qualified XML attribute.
Parameters
| nsAlias
| The attribute namespace prefix alias. |
| name
| The attribute name. |
| value
| The attribute value.
|
public
XmlWriter.Attribute
(String name, boolean value)