blob: a445bb9255bc3cf9949e98b240250cb6b3888efb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.actions;
import org.eclipse.jdt.core.dom.CompilationUnit;
/**
* This class remains for internal binary compatibility. The original class moved to a different
* package. @see bug 297808.
*/
public class ValidBreakpointLocationLocator extends org.eclipse.jdt.internal.debug.core.breakpoints.ValidBreakpointLocationLocator {
/**
* @param compilationUnit the JDOM CompilationUnit of the source code.
* @param lineNumber the line number in the source code where to put the breakpoint.
* @param bestMatch if <code>true</code> look for the best match, otherwise look only for a valid line
*/
public ValidBreakpointLocationLocator(CompilationUnit compilationUnit, int lineNumber, boolean bindingsResolved, boolean bestMatch) {
super(compilationUnit, lineNumber, bindingsResolved, bestMatch);
}
}