blob: c2a2035cf6048fc70165e5682a44f90505f389a8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.sandbox.ui.planner;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.mylyn.internal.provisional.commons.ui.CommonImages;
import org.eclipse.mylyn.tasks.core.ITask;
/**
* @author Rob Elves
*/
public class RemoveTaskAction extends Action {
public static final String ID = "org.eclipse.mylyn.taskplannereditor.actions.remove";
private final TreeViewer viewer;
public RemoveTaskAction(TreeViewer view) {
this.viewer = view;
setText("Remove Selected");
setId(ID);
setImageDescriptor(CommonImages.REMOVE);
}
@Override
public void run() {
for (Object object : ((IStructuredSelection) viewer.getSelection()).toList()) {
if (object instanceof ITask) {
ITask task = (ITask) object;
((ITaskPlannerContentProvider) (viewer.getContentProvider())).removeTask(task);
}
}
viewer.refresh();
}
}