| java.lang.Object org.eclipse.ui.views.markers.WorkbenchMarkerResolution
WorkbenchMarkerResolution | abstract public class WorkbenchMarkerResolution implements IMarkerResolution2(Code) | | WorkbenchMarkerResolution is the resolution that can be grouped
with others that are similar to allow multi selection.
since: 3.2 |
Method Summary | |
abstract public IMarker[] | findOtherMarkers(IMarker[] markers) Iterate through the list of supplied markers. | public void | run(IMarker[] markers, IProgressMonitor monitor) Runs this resolution. |
findOtherMarkers | abstract public IMarker[] findOtherMarkers(IMarker[] markers)(Code) | | Iterate through the list of supplied markers. Return any that can also have
the receiver applied to them.
Parameters: markers - IMarker[] |
run | public void run(IMarker[] markers, IProgressMonitor monitor)(Code) | | Runs this resolution. Resolve all markers .
markers must be a subset of the markers returned
by findOtherMarkers(IMarker[]) .
Parameters: markers - The markers to resolve, not null Parameters: monitor - The monitor to report progress |
|
|