Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/actions/SiblingNavigationAction.java')
-rw-r--r--bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/actions/SiblingNavigationAction.java110
1 files changed, 0 insertions, 110 deletions
diff --git a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/actions/SiblingNavigationAction.java b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/actions/SiblingNavigationAction.java
deleted file mode 100644
index a08b44f60e..0000000000
--- a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/internal/actions/SiblingNavigationAction.java
+++ /dev/null
@@ -1,110 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.wst.xml.ui.internal.actions;
-
-import java.util.ResourceBundle;
-
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.viewers.StructuredSelection;
-import org.eclipse.swt.widgets.Event;
-import org.eclipse.ui.texteditor.ITextEditor;
-import org.eclipse.ui.texteditor.TextEditorAction;
-import org.w3c.dom.Attr;
-import org.w3c.dom.Node;
-
-/**
- * Provides navigation to next/previous DOM sibling Nodes
- *
- * @author nitin
- *
- */
-class SiblingNavigationAction extends TextEditorAction {
-
- private boolean fForward;
-
- /**
- * @param bundle
- * @param prefix
- * @param editor
- */
- SiblingNavigationAction(ResourceBundle bundle, String prefix, ITextEditor editor, boolean forward) {
- super(bundle, prefix, editor);
- fForward = forward;
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.jface.action.Action#runWithEvent(org.eclipse.swt.widgets.Event)
- */
- public void runWithEvent(Event event) {
- super.runWithEvent(event);
- if (getTextEditor() == null)
- return;
-
- ISelection selection = getTextEditor().getSelectionProvider().getSelection();
- if (!selection.isEmpty() && selection instanceof IStructuredSelection) {
- Object o = ((IStructuredSelection) selection).getFirstElement();
- if (o instanceof Node) {
- Node sibling = null;
-
- if (((Node) o).getNodeType() == Node.ATTRIBUTE_NODE) {
- o = ((Attr) o).getOwnerElement();
- }
- if (fForward) {
- sibling = ((Node) o).getNextSibling();
- while (sibling != null && sibling.getNodeType() == Node.TEXT_NODE && sibling.getNodeValue().trim().length() == 0) {
- sibling = sibling.getNextSibling();
- }
- if (sibling == null) {
- sibling = ((Node) o).getParentNode().getFirstChild();
- while (sibling != null && sibling.getNodeType() == Node.TEXT_NODE && sibling.getNodeValue().trim().length() == 0) {
- sibling = sibling.getNextSibling();
- }
- }
- }
- else {
- sibling = ((Node) o).getPreviousSibling();
- while (sibling != null && sibling.getNodeType() == Node.TEXT_NODE && sibling.getNodeValue().trim().length() == 0) {
- sibling = sibling.getPreviousSibling();
- }
- if (sibling == null) {
- sibling = ((Node) o).getParentNode().getLastChild();
- while (sibling != null && sibling.getNodeType() == Node.TEXT_NODE && sibling.getNodeValue().trim().length() == 0) {
- sibling = sibling.getPreviousSibling();
- }
- }
- }
-
- // The only child is a Text Node, go to the parent Node
- if (((Node) o).getNodeType() == Node.TEXT_NODE && o.equals(sibling)) {
- sibling = ((Node) o).getParentNode();
- }
-
-
- if (sibling != null) {
- getTextEditor().getSelectionProvider().setSelection(new StructuredSelection(sibling));
- }
- }
- }
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ui.texteditor.TextEditorAction#update()
- */
- public void update() {
-
- }
-}

Back to the top