|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.xml.sax.helpers.AttributesImpl org.apache.cocoon.xml.AttributesImpl
public class AttributesImpl
A helper Class creating SAX Attributes
Constructor Summary | |
---|---|
AttributesImpl()
Constructor |
|
AttributesImpl(Attributes attr)
Constructor |
Method Summary | |
---|---|
void |
addCDATAAttribute(String localName,
String value)
Add an attribute of type CDATA with empty Namespace to the end of the list. |
void |
addCDATAAttribute(String namespace,
String localName,
String value)
Add an attribute of type CDATA with the namespace to the end of the list. |
void |
addCDATAAttribute(String uri,
String localName,
String qName,
String value)
Add an attribute of type CDATA to the end of the list. |
void |
removeAttribute(String localName)
Remove an attribute |
void |
removeAttribute(String uri,
String localName)
Remove an attribute |
Methods inherited from class org.xml.sax.helpers.AttributesImpl |
---|
addAttribute, clear, getIndex, getIndex, getLength, getLocalName, getQName, getType, getType, getType, getURI, getValue, getValue, getValue, removeAttribute, setAttribute, setAttributes, setLocalName, setQName, setType, setURI, setValue |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AttributesImpl()
public AttributesImpl(Attributes attr)
Method Detail |
---|
public void addCDATAAttribute(String localName, String value)
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.
localName
- The local name.value
- The attribute value.public void addCDATAAttribute(String namespace, String localName, String value)
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.
namespace
- The namespace.localName
- The local name.value
- The attribute value.public void addCDATAAttribute(String uri, String localName, String qName, String value)
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.
uri
- The Namespace URI, or the empty string if
none is available or Namespace processing is not
being performed.localName
- The local name, or the empty string if
Namespace processing is not being performed.qName
- The qualified (prefixed) name, or the empty string
if qualified names are not available.value
- The attribute value.public void removeAttribute(String localName)
public void removeAttribute(String uri, String localName)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |