]> git.saurik.com Git - android/aapt.git/blobdiff - XMLNode.cpp
Merge "Add --auto-add-overlay option to aapt."
[android/aapt.git] / XMLNode.cpp
index 036dde44f0e3026414bf6900485eb493ae57cb3e..4c5928880d9eae5c31a52c27f2d451fa3c25e3ad 100644 (file)
@@ -555,6 +555,19 @@ const XMLNode::attribute_entry* XMLNode::getAttribute(const String16& ns,
     return NULL;
 }
 
+XMLNode::attribute_entry* XMLNode::editAttribute(const String16& ns,
+        const String16& name)
+{
+    for (size_t i=0; i<mAttributes.size(); i++) {
+        attribute_entry * ae = &mAttributes.editItemAt(i);
+        if (ae->ns == ns && ae->name == name) {
+            return ae;
+        }
+    }
+
+    return NULL;
+}
+
 const String16& XMLNode::getCData() const
 {
     return mChars;