This extension point allows to add a Quick Fix processor to offer new Quick Fixes on Java problems. <p> Since 3.2 an extension can specify which problem marker types it can handle. It will only get problems of these types to process. If no handled marker type are specified, the processor will only get problems of types descent.core.problem, descent.core.buildpath_problem and descent.core.task (compatible to the behaviour prior to 3.2). </p> <p> This extension point supports the <code>enablement</code> tag. Properties to test on are: <dl> <li>compilationUnit: type ICompilationUnit; the compilation unit the quick assist is applied on</li> <li>projectNatures: type Collection; all project natures of the current project</li> <li>sourceLevel: type String; the source compliance 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 Unique identifier for the Quick Fix processor 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>descent.ui.text.java.IQuickFixProcessor</samp> with a public 0-argument constructor. Optional attribute to specify the minimal source compliance this processor requires. 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 descent.core.problem, descent.core.buildpath_problem and descent.core.task. The marker type id of the marker that can be handled by this processor The following is an example of a Quick Fix processor contribution: <p> <pre> <extension point="descent.ui.quickFixProcessors"> <quickFixProcessor id="AdvancedQuickFixProcessor" name="Advanced Quick Fix Processor" requiredSourceLevel="1.5" class="com.example.AdvancedQuickFixProcessor"> <handledMarkerTypes> <markerType id="org.eclipse.myplugin.audits"/> </handledMarkerTypes> <enablement> <with variable="projectNatures"> <iterate operator="or"> <equals value="descent.core.dnature"/> </iterate> </with> </enablement> </quickFixProcessor> </extension> </pre> </p> Extension point since 3.0. Element <code>handledMarkerTypes</code> since 3.2. The contributed class must implement <code>descent.ui.text.java.IQuickFixProcessor</code> Copyright (c) 2001, 2006 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>