Skip to main content
summaryrefslogtreecommitdiffstats
blob: e3eff50f0cf8ae2f673792b3ec7ff591a8a5bfb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
 * Copyright (c) 2004 - 2006 Mylar committers 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
 *******************************************************************************/

package org.eclipse.mylyn.tasks.ui;

/**
 * @author Willian Mitsuda
 * @author Mik Kersten
 */
public interface ITaskCommandIds {

	public static final String OPEN_TASK = "org.eclipse.mylyn.tasks.ui.command.openTask";

	public static final String OPEN_TASK_REMOTE = "org.eclipse.mylyn.tasks.ui.command.openRemoteTask";

	public static final String ACTIVATE_TASK = "org.eclipse.mylyn.tasks.ui.command.activateTask";

	public static final String DEACTIVATE_TASK = "org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks";

	public static final String ADD_TASK_REPOSITORY = "org.eclipse.mylyn.tasks.ui.command.addTaskRepository";

}

Back to the top