Modifier and Type | Field and Description |
---|---|
pack-priv static final long |
Access | Constructor and Description |
---|---|
public | |
public | MutableAttrListImpl(Attributes
The existing Attributes object. atts)Copy an existing Attributes object. |
Modifier and Type | Method and Description |
---|---|
public void | addAttribute(String
The Namespace URI, or the empty string if
none is available or Namespace processing is not
being performed. uri, String The local name, or the empty string if
Namespace processing is not being performed. localName, String The qualified (prefixed) name, or the empty string
if qualified names are not available. qName, String The attribute type as a string. type, String The attribute value. value)
Add an attribute to the end of the list.
|
public void | addAttributes(Attributes
List of attributes to add to this list atts)Add the contents of the attribute list to this list. |
public boolean |
serialVersionUID | back to summary |
---|---|
pack-priv static final long serialVersionUID |
MutableAttrListImpl | back to summary |
---|---|
public MutableAttrListImpl() Construct a new, empty AttributesImpl object. |
MutableAttrListImpl | back to summary |
---|---|
public MutableAttrListImpl(Attributes atts) Copy an existing Attributes object. This constructor is especially useful inside a start element event.
|
addAttribute | back to summary |
---|---|
public void addAttribute(String uri, String localName, String qName, String type, String value) Overrides org. Add an attribute to the end of the list. For the sake of speed, this method does no checking to see if the attribute is already in the list: that is the responsibility of the application.
|
addAttributes | back to summary |
---|---|
public void addAttributes(Attributes atts) Add the contents of the attribute list to this list.
|
contains | back to summary |
---|---|
public boolean contains(String name) Return true if list contains the given (raw) attribute name.
|