blob: 0eb2c4c3fbb7bb91d5efd50cfae934a79ed8719f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* 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.TaskCategory;
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.IRepositoryQuery;
/**
* @author Steffen Pingel
*/
public class OpenTaskListElementPropertiesHandler extends AbstractTaskListViewHandler {
@Override
protected void execute(ExecutionEvent event, TaskListView taskListView, IRepositoryElement item) {
if (item instanceof TaskCategory || item instanceof IRepositoryQuery) {
TasksUiInternal.refreshAndOpenTaskListElement(item);
}
}
}