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.xsl.debug.ui/src/org/eclipse/wst/xsl/internal/debug/ui/actions/MoveDownAction.java')
-rw-r--r--bundles/org.eclipse.wst.xsl.debug.ui/src/org/eclipse/wst/xsl/internal/debug/ui/actions/MoveDownAction.java79
1 files changed, 0 insertions, 79 deletions
diff --git a/bundles/org.eclipse.wst.xsl.debug.ui/src/org/eclipse/wst/xsl/internal/debug/ui/actions/MoveDownAction.java b/bundles/org.eclipse.wst.xsl.debug.ui/src/org/eclipse/wst/xsl/internal/debug/ui/actions/MoveDownAction.java
deleted file mode 100644
index fe7dda7..0000000
--- a/bundles/org.eclipse.wst.xsl.debug.ui/src/org/eclipse/wst/xsl/internal/debug/ui/actions/MoveDownAction.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Chase Technology Ltd - http://www.chasetechnology.co.uk
- * 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:
- * Doug Satchwell (Chase Technology Ltd) - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.xsl.internal.debug.ui.actions;
-
-import java.util.List;
-
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer;
-import org.eclipse.wst.xsl.launching.config.LaunchTransform;
-import org.eclipse.wst.xsl.debug.ui.Messages;
-
-/**
- * The action for moving a stylesheet further down in the transformation pipeline.
- *
- * @author Doug Satchwell
- */
-public class MoveDownAction extends AbstractStylesheetAction
-{
- /**
- * Create a new instance of this.
- *
- * @param viewer
- */
- public MoveDownAction(StylesheetViewer viewer)
- {
- super(Messages.MoveDownAction_Text, viewer);
- }
-
- @Override
- public void run()
- {
- List<?> targets = getOrderedSelection();
- if (targets.isEmpty())
- {
- return;
- }
- List<LaunchTransform> list = getEntriesAsList();
- int bottom = list.size() - 1;
- int index = 0;
- for (int i = targets.size() - 1; i >= 0; i--)
- {
- Object target = targets.get(i);
- index = list.indexOf(target);
- if (index < bottom)
- {
- bottom = index + 1;
- Object temp = list.get(bottom);
- list.set(bottom, (LaunchTransform)target);
- list.set(index, (LaunchTransform)temp);
- }
- bottom = index;
- }
- setEntries(list);
- }
-
- @Override
- protected boolean updateSelection(IStructuredSelection selection)
- {
- if (selection.isEmpty())
- {
- return false;
- }
- return getViewer().updateSelection(getActionType(), selection) && !isIndexSelected(selection, getEntriesAsList().size() - 1);
- }
-
- @Override
- protected int getActionType()
- {
- return MOVE;
- }
-}

Back to the top