blob: c8a363a079a2b09e10768a04d963498bb317afc8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.internal.mylyn;
import org.eclipse.core.resources.IMarker;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.dltk.debug.core.model.IScriptLineBreakpoint;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.mylyn.ide.ui.AbstractMarkerInterestFilter;
/**
* @author Mik Kersten
*/
public class BreakpointsInterestFilter extends AbstractMarkerInterestFilter {
@Override
public boolean select(Viewer viewer, Object parent, Object element) {
if (element instanceof IScriptLineBreakpoint) {
IScriptLineBreakpoint breakpoint = (IScriptLineBreakpoint) element;
return isInteresting(breakpoint.getMarker(), viewer, parent);
}
if (element instanceof IBreakpoint) {
IBreakpoint breakpoint = (IBreakpoint) element;
// TODO: could consider use breakpoint.isEnabled() to make enabled breakpoints implicitly interesting
return isInteresting(breakpoint.getMarker(), viewer, parent);
}
return false;
}
@Override
protected boolean isImplicitlyInteresting(IMarker marker) {
return false;
}
}