public interface IBreakpointImportParticipant
Participants are used during a breakpoint import operation to specify how breakpoints of the associated marker type should be compared and how the breakpoint should be validated once it is decided it will be imported.
A breakpoint import participant it contributed via the
org.eclipse.debug.core.breakpointImportParticipants extension point.
Following is an example of a breakpoint participant extension:
Clients may implement this interface.
IBreakpointManager| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(Map<String,Object> attributes,
IBreakpoint breakpoint)
Determines if the given attributes match the given breakpoint.
|
void |
verify(IBreakpoint breakpoint)
Verifies the state of the breakpoint once it has been imported.
|
boolean matches(Map<String,Object> attributes, IBreakpoint breakpoint) throws CoreException
attributes - the map of raw breakpoint attributes read from the import mementobreakpoint - the current breakpoint context in the import operationCoreException - if an exception occursvoid verify(IBreakpoint breakpoint) throws CoreException
breakpoint - the breakpoint to be verifiedCoreException - if an exception occurs
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.