Searched defs:getAttributeNS (Results 1 - 1 of 1) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DOutlineLabelProvider.java60 String id = getAttributeNS(e, ANDROID_URI, ATTR_ID);
62 id = getAttributeNS(e, ANDROID_URI, ATTR_NAME);
66 id = getAttributeNS(e, ANDROID_URI, ATTR_TEXT);
71 id = getAttributeNS(e, ANDROID_URI, ATTR_SRC);
96 * Wrapper around {@link Element#getAttributeNS(String, String)}.
101 * @see Element#getAttributeNS(String, String)
103 private String getAttributeNS(Element e, String uri, String name) throws DOMException { method in class:OutlineLabelProvider
105 return e.getAttributeNS(uri, name);

Completed in 56 milliseconds