blob: e6c9e20b683875ff216f9448951f5124276b9f3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.actions;
import java.util.List;
import org.eclipse.jdt.internal.debug.ui.launcher.IClasspathViewer;
import org.eclipse.jdt.launching.IRuntimeClasspathEntry;
import org.eclipse.jface.viewers.IStructuredSelection;
/**
* Moves selected entries in a runtime classpath viewer down one position.
*/
public class MoveDownAction extends RuntimeClasspathAction {
public MoveDownAction(IClasspathViewer viewer) {
super(ActionMessages.MoveDownAction_M_ove_Down_1, viewer);
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.Action#run()
*/
@Override
public void run() {
List<IRuntimeClasspathEntry> targets = getOrderedSelection();
if (targets.isEmpty()) {
return;
}
List<IRuntimeClasspathEntry> list = getEntriesAsList();
int bottom = list.size() - 1;
int index = 0;
for (int i = targets.size() - 1; i >= 0; i--) {
IRuntimeClasspathEntry target = targets.get(i);
index = list.indexOf(target);
if (index < bottom) {
bottom = index + 1;
IRuntimeClasspathEntry temp = list.get(bottom);
list.set(bottom, target);
list.set(index, temp);
}
if (bottom == index){
bottom--;
} else {
bottom = index;
}
}
setEntries(list);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.RuntimeClasspathAction#updateSelection(org.eclipse.jface.viewers.IStructuredSelection)
*/
@Override
protected boolean updateSelection(IStructuredSelection selection) {
if (selection.isEmpty()) {
return false;
}
return getViewer().updateSelection(getActionType(), selection);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.RuntimeClasspathAction#getActionType()
*/
@Override
protected int getActionType() {
return MOVE;
}
}