blob: 8441bb227f1d486607dddd6e564d0e90367ae0f5 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.task.ui.contributions;
import org.eclipse.egf.model.ftask.Task;
import org.eclipse.egf.task.EGFTaskPlugin;
/**
* @author Xavier Maysonnave
*
*/
public class OpenJavaTaskImplementationListenerContributor extends TaskListenerContributor {
@Override
protected void doDoubleClick(Task task) {
new OpenJavaTaskImplementationMenuContributor.OpenAction(task).run();
}
@Override
protected String getExpectedKind() {
return EGFTaskPlugin.KIND_JAVA;
}
}