blob: bbc9fb63a60f27bc7541020a5524ba107107cc3b [file] [log] [blame]
/*******************************************************************************
* 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.sandbox.bridge.bugs;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.mylyn.internal.tasks.ui.deprecated.AbstractRepositoryTaskEditor;
import org.eclipse.mylyn.internal.tasks.ui.editors.RepositoryTaskSelection;
import org.eclipse.mylyn.monitor.ui.AbstractUserInteractionMonitor;
import org.eclipse.mylyn.tasks.ui.editors.TaskEditor;
import org.eclipse.ui.IWorkbenchPart;
/**
* @author Mik Kersten
*/
public class BugzillaEditingMonitor extends AbstractUserInteractionMonitor {
public BugzillaEditingMonitor() {
super();
}
@Override
protected void handleWorkbenchPartSelection(IWorkbenchPart part, ISelection selection, boolean contributeToContext) {
if (!(part instanceof AbstractRepositoryTaskEditor) && !(part instanceof TaskEditor)) {
return;
}
if (selection instanceof StructuredSelection) {
StructuredSelection ss = (StructuredSelection) selection;
Object object = ss.getFirstElement();
if (object instanceof RepositoryTaskSelection) {
super.handleElementSelection(part, object, contributeToContext);
}
}
}
}