blob: 03ed56e76488bb6dbfce8fcc905b5cbf0cc24669 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Chalmers | University of Gothenburg, rt-labs 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:
* Chalmers | University of Gothenburg and rt-labs - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.capra.handler.mylyn;
import org.eclipse.capra.core.adapters.ArtifactMetaModelAdapter;
import org.eclipse.capra.core.handlers.ArtifactHandler;
import org.eclipse.capra.core.helpers.ExtensionPointHelper;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.mylyn.tasks.core.ITask;
/**
* A handler to allow tracing from and to tasks handled by Mylyn.
*/
public class MylynHandler implements ArtifactHandler {
@Override
public boolean canHandleSelection(Object selection) {
return selection instanceof ITask;
}
@Override
public EObject getEObjectForSelection(Object selection, EObject artifactModel) {
ITask task = (ITask) selection;
ArtifactMetaModelAdapter adapter = ExtensionPointHelper.getArtifactWrapperMetaModelAdapter().get();
EObject wrapper = adapter.createArtifact(artifactModel, this.getClass().getName(), task.getUrl(),
task.getSummary());
return wrapper;
}
@Override
public Object resolveArtifact(EObject artifact) {
// TODO Auto-generated method stub
return null;
}
@Override
public String getDisplayName(Object selection) {
ITask task = (ITask) selection;
return task.getTaskId() + " : " + task.getSummary();
}
}