Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xpp fixes #22

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion src/main/java/org/dom4j/xpp/ProxyXmlStartTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public void ensureAttributesCapacity(int minCapacity)
* @throws XmlPullParserException
* DOCUMENT ME!
*/
public void removeAtttributes() throws XmlPullParserException {
public void removeAttributes() throws XmlPullParserException {
if (element != null) {
element.setAttributes(new ArrayList());

Expand All @@ -221,6 +221,33 @@ public void removeAtttributes() throws XmlPullParserException {
}
}

public boolean removeAttributeByName(String namespaceURI, String localName) throws XmlPullParserException {
if (element != null) {
for (Iterator<Attribute> iter = element.attributeIterator(); iter.hasNext();) {
Attribute attribute = iter.next();

if (namespaceURI.equals(attribute.getNamespaceURI())
&& localName.equals(attribute.getName())) {
return element.remove(attribute);
}
}
}
return false;
}

public boolean removeAttributeByRawName(String rawName) throws XmlPullParserException {
if (element != null) {
for (Iterator<Attribute> iter = element.attributeIterator(); iter.hasNext();) {
Attribute attribute = iter.next();

if (rawName.equals(attribute.getQualifiedName())) {
return element.remove(attribute);
}
}
}
return false;
}

public String getLocalName() {
return element.getName();
}
Expand Down