Home
last modified time | relevance | path

Searched refs:ui_node (Results 1 – 9 of 9) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DNewItemSelectionDialog.java88 UiElementNode ui_node, in NewItemSelectionDialog() argument
96 if (ui_node != null && ui_node != mLocalRootNode) { in NewItemSelectionDialog()
97 if (ui_node.getDescriptor().hasChildren()) { in NewItemSelectionDialog()
98 mSelectedUiNode = ui_node; in NewItemSelectionDialog()
100 UiElementNode parent = ui_node.getUiParent(); in NewItemSelectionDialog()
158 private String getLeafFileName(UiElementNode ui_node) { in getLeafFileName() argument
159 if (ui_node != null) { in getLeafFileName()
160 AndroidXmlEditor editor = ui_node.getEditor(); in getLeafFileName()
182 private String getLastUsedXmlName(UiElementNode ui_node) { in getLastUsedXmlName() argument
183 if (ui_node != null) { in getLastUsedXmlName()
[all …]
DUiElementDetail.java111 UiElementNode ui_node = (UiElementNode) first; in selectionChanged() local
112 createUiAttributeControls(mManagedForm, ui_node); in selectionChanged()
228 final UiElementNode ui_node) { in createUiAttributeControls() argument
230 final ElementDescriptor elem_desc = ui_node.getDescriptor(); in createUiAttributeControls()
231 mMasterSection.setText(String.format("Attributes for %1$s", ui_node.getShortDescription())); in createUiAttributeControls()
233 if (mCurrentUiElementNode != ui_node) { in createUiAttributeControls()
246 AttributeDescriptor[] attr_desc_list = ui_node.getAttributeDescriptors(); in createUiAttributeControls()
265 mCurrentUiElementNode = ui_node; in createUiAttributeControls()
291 ui_node.getDescriptor().getXmlName(), in createUiAttributeControls()
321 UiAttributeNode ui_attr = ui_node.findUiAttribute(attr_desc); in createUiAttributeControls()
[all …]
DUiModelTreeContentProvider.java94 for (UiElementNode ui_node : mUiRootNode.getUiChildren()) { in getElements()
96 roots.add(ui_node); in getElements()
99 if (ui_node.getDescriptor() == filter) { in getElements()
100 roots.add(ui_node); in getElements()
DUiTreeBlock.java277 public void uiElementNodeUpdated(UiElementNode ui_node, UiUpdateState state) { in createTreeViewer()
284 public void uiElementNodeUpdated(UiElementNode ui_node, UiUpdateState state) { in createTreeViewer()
292 boolean exists = mAutoCreateRoot || (ui_node.getXmlNode() != null); in createTreeViewer()
621 for (UiElementNode ui_node = uiNodeToSelect; ui_node != mUiRootNode; in selectUiNode()
622 ui_node = ui_node.getUiParent()) { in selectUiNode()
623 segments.add(0, ui_node); in selectUiNode()
666 UiElementNode ui_node = mUiRootNode; in doTreeAdd() local
672 ui_node = (UiElementNode) first; in doTreeAdd()
677 ui_node, in doTreeAdd()
DPasteAction.java46 public PasteAction(AndroidXmlEditor editor, Clipboard clipboard, UiElementNode ui_node) { in PasteAction() argument
57 mUiNode = ui_node; in PasteAction()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
DManifestEditor.java403 for (UiElementNode ui_node : nodeList) { in processMarker()
404 if (ui_node.getDescriptor().getXmlName().equals(nodeType)) { in processMarker()
405 for (UiAttributeNode attr : ui_node.getAllUiAttributes()) { in processMarker()
444 for (UiElementNode ui_node : mUiManifestNode.getUiChildren()) { in initUiRootNode()
445 if (ui_node.getDescriptor() == element) { in initUiRootNode()
456 for (UiElementNode ui_node : mUiManifestNode.getUiChildren()) { in initUiRootNode()
457 if (ui_node.getDescriptor() == element) { in initUiRootNode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DIUiUpdateListener.java46 public void uiElementNodeUpdated(UiElementNode ui_node, UiUpdateState state); in uiElementNodeUpdated() argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
DApplicationAttributesPart.java160 public void uiElementNodeUpdated(UiElementNode ui_node, UiUpdateState state) { in uiElementNodeUpdated() argument
166 boolean exists = (ui_node.getXmlNode() != null); in uiElementNodeUpdated()
DApplicationToggle.java294 public void uiElementNodeUpdated(UiElementNode ui_node, UiUpdateState state) { in uiElementNodeUpdated() argument
302 boolean exists = ui_node.getXmlNode() != null; in uiElementNodeUpdated()