X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/dadd9c1fc18bd05c84a357b56e945b5829b3bd95..c89292a244e18abf676d2448862421235b6130e8:/XMLNode.h diff --git a/XMLNode.h b/XMLNode.h index 8c4243c..a9bea43 100644 --- a/XMLNode.h +++ b/XMLNode.h @@ -17,7 +17,7 @@ extern const char* const RESOURCES_ANDROID_NAMESPACE; bool isWhitespace(const char16_t* str); -String16 getNamespaceResourcePackage(String16 namespaceUri); +String16 getNamespaceResourcePackage(String16 namespaceUri, bool* outIsPublic = NULL); status_t parseStyledString(Bundle* bundle, const char* fileName, @@ -68,6 +68,8 @@ public: const String16& getElementName() const; const Vector >& getChildren() const; + const String8& getFilename() const; + struct attribute_entry { attribute_entry() : index(~(uint32_t)0), nameResId(0) { @@ -91,6 +93,8 @@ public: const Vector& getAttributes() const; + const attribute_entry* getAttribute(const String16& ns, const String16& name) const; + const String16& getCData() const; const String16& getComment() const; @@ -98,8 +102,14 @@ public: int32_t getStartLineNumber() const; int32_t getEndLineNumber() const; + sp searchElement(const String16& tagNamespace, const String16& tagName); + + sp getChildElement(const String16& tagNamespace, const String16& tagName); + status_t addChild(const sp& child); + status_t insertChildAt(const sp& child, size_t index); + status_t addAttribute(const String16& ns, const String16& name, const String16& value);