blob: b93e5c70c51d94b80f27a9d1250798fed5e793af [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2015 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.debug.ui;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.debug.ui.IDebugView;
import org.eclipse.jface.viewers.StructuredViewer;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.mylyn.ide.ui.AbstractFocusMarkerViewAction;
import org.eclipse.ui.IViewPart;
/**
* @author Mik Kersten
*/
public class FocusBreakpointsViewAction extends AbstractFocusMarkerViewAction {
public FocusBreakpointsViewAction() {
super(new BreakpointsInterestFilter(), true, true, false);
}
@Override
public final List<StructuredViewer> getViewers() {
List<StructuredViewer> viewers = new ArrayList<StructuredViewer>();
IViewPart viewPart = super.getPartForAction();
if (viewPart instanceof IDebugView) {
IDebugView view = (IDebugView) viewPart;
Viewer viewer = view.getViewer();
if (viewer instanceof StructuredViewer) {
viewers.add((StructuredViewer) viewer);
}
}
return viewers;
}
}