blob: 5384424760499b097df1f65e0a6976b37487dccd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.debug.core;
import org.eclipse.core.runtime.CoreException;
/**
* A line breakpoint installed in types associated with a specific source file
* (based on source file name debug attribute) and whose fully qualified name
* matches a specified pattern.
*
* @since 2.0
* @deprecated use <code>IJavaStratumLineBreakpoint</code> instead
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
@Deprecated
public interface IJavaPatternBreakpoint extends IJavaLineBreakpoint {
/**
* Returns the type name pattern this breakpoint uses to identify types in
* which to install itself.
*
* @return the type name pattern this breakpoint uses to identify types in
* which to install itself
* @exception CoreException
* if unable to access the property from this breakpoint's
* underlying marker
*/
public String getPattern() throws CoreException;
/**
* Returns the source file name in which this breakpoint is set. When this
* breakpoint specifies a source file name, this breakpoint is only
* installed in types whose source file name debug attribute match this
* value.
*
* @return the source file name in which this breakpoint is set
* @exception CoreException
* if unable to access the property from this breakpoint's
* underlying marker
*/
public String getSourceName() throws CoreException;
}