| Constructor: |
public DefaultAttribute(QName qname) {
super(qname);
}
|
public DefaultAttribute(QName qname,
String value) {
super(qname, value);
}
|
public DefaultAttribute(String name,
String value) {
super(name, value);
}
Creates the Attribute with the specified local name and
value. Parameters:
name -
is the name of the attribute
value -
is the value of the attribute
|
public DefaultAttribute(Element parent,
QName qname,
String value) {
super(qname, value);
this.parent = parent;
}
|
public DefaultAttribute(String name,
String value,
Namespace namespace) {
super(name, value, namespace);
}
Creates the Attribute with the specified local name, value
and Namespace. Parameters:
name -
is the name of the attribute
value -
is the value of the attribute
namespace -
is the namespace of the attribute
|
public DefaultAttribute(Element parent,
String name,
String value,
Namespace namespace) {
super(name, value, namespace);
this.parent = parent;
}
Creates the Attribute with the specified local name, value
and Namespace. Parameters:
parent -
is the parent element
name -
is the name of the attribute
value -
is the value of the attribute
namespace -
is the namespace of the attribute
|