handledMarkerTypes
since 3.2.
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 types are specified, the processor will only get problems of types org.eclipse.jdt.core.problem, org.eclipse.jdt.core.buildpath_problem and org.eclipse.jdt.core.task (compatible to the behaviour prior to 3.2).
This extension point supports the<enablement>
element.
The default variable is the containing org.eclipse.jdt.core.ICompilationUnit
.
<with>
expressions are:
org.eclipse.jdt.core.ICompilationUnit
; the compilation unit the quick assist is applied on (same as the default variable)java.util.Collection<String>
; all project natures of the current projectjava.lang.String
; the source compliance level of the current project
<!ELEMENT extension (quickFixProcessor+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT quickFixProcessor (enablement? , handledMarkerTypes*)>
<!ATTLIST quickFixProcessor
id CDATA #REQUIRED
name CDATA #IMPLIED
class CDATA #REQUIRED
requiredSourceLevel CDATA #IMPLIED>
<!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.jdt.core.problem, org.eclipse.jdt.core.buildpath_problem and org.eclipse.jdt.core.task.
<!ELEMENT markerType EMPTY>
<!ATTLIST markerType
id IDREF #REQUIRED>
<extension point="org.eclipse.jdt.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="org.eclipse.jdt.core.javanature"/> </iterate> </with> </enablement> </quickFixProcessor> </extension>
org.eclipse.jdt.ui.text.java.IQuickFixProcessor
Copyright (c) 2001, 2013 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/
SPDX-License-Identifier: EPL-2.0