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.java67 String id = getAttributeNS(e, ANDROID_URI, ATTR_ID);
69 id = getAttributeNS(e, ANDROID_URI, ATTR_NAME);
73 id = getAttributeNS(e, ANDROID_URI, ATTR_TEXT);
78 id = getAttributeNS(e, ANDROID_URI, ATTR_SRC);
103 * Wrapper around {@link Element#getAttributeNS(String, String)}.
108 * @see Element#getAttributeNS(String, String)
110 private String getAttributeNS(Element e, String uri, String name) throws DOMException { method in class:OutlineLabelProvider
112 return e.getAttributeNS(uri, name);

Completed in 116 milliseconds