Home | History | Annotate | Download | only in tree

Lines Matching defs:null

53      * @param uiNode The node to select. Can be null (in which case nothing should happen)
66 doAdd(uiNode, null /* descriptorFilters */, shell, new UiModelTreeLabelProvider());
91 if (results != null && results.length > 0) {
92 addElement(dlg.getChosenRootNode(), null, (ElementDescriptor) results[0],
109 * @param uiParent An existing UI node or null to add to the tree root
110 * @param uiSibling An existing UI node before which to insert the new node. Can be null.
113 * @return The new {@link UiElementNode} or null.
122 if (uiSibling != null && uiSibling.getUiParent() != uiParent) {
123 uiSibling = null;
141 if (nodes == null || nodes.size() == 0) {
160 UiElementNode previous = null;
161 UiElementNode parent = null;
173 if (previous != null) {
175 } else if (parent != null) {
190 if (nodes == null || nodes.size() < 1) {
194 final Node[] select_xml_node = { null };
195 UiElementNode last_node = null;
196 UiElementNode search_root = null;
203 if (search_root != null && search_root.getUiParent() != null) {
211 if (xml_node != null) {
213 if (xml_parent != null) {
215 if (ui_prev != null && ui_prev.getXmlNode() != null) {
231 xml_parent.getParentNode() != null &&
248 if (select_xml_node[0] == null) {
255 if (search_root == null) {
258 if (search_root != null) {
271 if (nodes == null || nodes.size() < 1) {
275 final Node[] select_xml_node = { null };
276 UiElementNode last_node = null;
277 UiElementNode search_root = null;
283 if (search_root != null && search_root.getUiParent() != null) {
291 if (xml_node != null) {
293 if (xml_parent != null) {
295 if (uiNext != null && uiNext.getXmlNode() != null) {
303 // null, i.e. when the node doesn't have children yet.
314 xml_parent.getParentNode() != null &&
330 if (select_xml_node[0] == null) {
337 if (search_root == null) {
340 if (search_root != null) {
354 * @param uiParent An existing UI node or null to add to the tree root
355 * @param uiSibling An existing UI node to insert right before. Can be null.