/******************************************************************************* * 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.tasks.ui.commands; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.mylyn.internal.tasks.core.AbstractTask; import org.eclipse.mylyn.internal.tasks.ui.util.TasksUiInternal; import org.eclipse.mylyn.internal.tasks.ui.views.TaskListView; import org.eclipse.mylyn.tasks.core.IRepositoryElement; import org.eclipse.mylyn.tasks.core.ITask; /** * @author Steffen Pingel */ public class OpenSelectedTaskHandler extends AbstractTaskListViewHandler { @Override protected void execute(ExecutionEvent event, TaskListView taskListView, IRepositoryElement item) { if (item instanceof ITask) { TasksUiInternal.openTaskInBackground((AbstractTask) item, true); } } }