This extension point allows to add a Quick Fix processor to offer new Quick Fixes on C/C++ problems. <p> Extension can specify which problem marker types it can handle. It will only get problems of these types to process. </p> <p> This extension point supports the <code>enablement</code> tag. Properties to test on are: <dl> <li>translationUnit: type ITranslationUnit; the translation unit the quick assist is applied on</li> <li>projectNatures: type Collection; all project natures of the current project</li> </dl> </p> a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance a unique identifier for the Quick Fix processor a localized name of the Quick Fix processor the name of the class that implements this Quick Fix processor. The class must be public and implement <samp>org.eclipse.cdt.ui.text.IQuickFixProcessor</samp> with a public 0-argument constructor. 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. the marker type id of the marker that can be handled by this processor 4.1 The following is an example of a Quick Fix processor contribution: <p> <pre> <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> </pre> </p> The contributed class must implement <code>org.eclipse.cdt.ui.text.IQuickFixProcessor</code> Copyright (c) 2001, 2007 IBM Corporation and others.<br> 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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>