The extension can specify which problem marker types it can handle. It will only get problems of these types to process.
This extension point supports the enablement
tag. Properties to test on are:
<!ELEMENT extension (quickFixProcessor+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT quickFixProcessor (enablement? , handledMarkerTypes*)>
<!ATTLIST quickFixProcessor
id IDREF #REQUIRED
name CDATA #IMPLIED
class CDATA #REQUIRED>
<!ELEMENT handledMarkerTypes (markerType+)>
Specifies the marker types of the problems this quick fix processor can handle. If no handled marker type are specified, the processor will get problems of types org.eclipse.cdt.core.problem, org.eclipse.cdt.core.buildpath_problem and org.eclipse.cdt.core.task.
<!ELEMENT markerType EMPTY>
<!ATTLIST markerType
id IDREF #REQUIRED>
<extension point="org.eclipse.cdt.ui.quickFixProcessors"> <quickFixProcessor id="AdvancedQuickFixProcessor" name="Advanced Quick Fix Processor" class="com.example.AdvancedQuickFixProcessor"> <handledMarkerTypes> <markerType id="org.eclipse.myplugin.audits"/> </handledMarkerTypes> <enablement> <with variable="projectNatures"> <iterate operator="or"> <equals value="org.eclipse.cdt.core.cnature"/> </iterate> </with> </enablement> </quickFixProcessor> </extension>
org.eclipse.cdt.ui.text.IQuickFixProcessor
Copyright (c) 2001, 2007 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