Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-01-25 16:28:38 +0000
committerJay Arthanareeswaran2018-02-22 05:28:27 +0000
commit8c1a1371b968a9c4c1dfc7640facf58e329e1845 (patch)
tree667264a2ddb1feaa3cec38258fd08af60db71992 /org.eclipse.jdt.apt.ui
parentfab16a9e835e586544401d3b50d68a31918a4f3c (diff)
downloadeclipse.jdt.core-8c1a1371b968a9c4c1dfc7640facf58e329e1845.tar.gz
eclipse.jdt.core-8c1a1371b968a9c4c1dfc7640facf58e329e1845.tar.xz
eclipse.jdt.core-8c1a1371b968a9c4c1dfc7640facf58e329e1845.zip
Bug 530321 - Add "apt" as search term for annotation processing in the
preferences Change-Id: Ic5968a4dad026a54606f940fbc566ce45e43c68b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'org.eclipse.jdt.apt.ui')
-rw-r--r--org.eclipse.jdt.apt.ui/plugin.properties3
-rw-r--r--org.eclipse.jdt.apt.ui/plugin.xml9
2 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.jdt.apt.ui/plugin.properties b/org.eclipse.jdt.apt.ui/plugin.properties
index 4b61be465d..aeb5c1d7a7 100644
--- a/org.eclipse.jdt.apt.ui/plugin.properties
+++ b/org.eclipse.jdt.apt.ui/plugin.properties
@@ -15,4 +15,5 @@ aptQuickFixProcessorName=APTQuickFixProcessor
annotationProcessingName=Annotation Processing
factoryPathName=Factory Path
natureName=nature
-markerCategory.problem=APT Problems \ No newline at end of file
+markerCategory.problem=APT Problems
+preferenceKeywords.annotation.processing=apt
diff --git a/org.eclipse.jdt.apt.ui/plugin.xml b/org.eclipse.jdt.apt.ui/plugin.xml
index f3f10e4d2a..1f9a26e11d 100644
--- a/org.eclipse.jdt.apt.ui/plugin.xml
+++ b/org.eclipse.jdt.apt.ui/plugin.xml
@@ -42,6 +42,8 @@
<test property="org.eclipse.core.resources.projectNature" value="org.eclipse.jdt.core.javanature"/>
</adapt>
</enabledWhen>
+ <keywordReference
+ id="org.eclipse.jdt.apt.ui.propertyPages.aptPreferences.keyword"></keywordReference>
</page>
<page
category="org.eclipse.jdt.apt.ui.propertyPages.aptPreferences"
@@ -65,6 +67,13 @@
<markerTypeReference id="org.eclipse.jdt.apt.pluggable.core.compileProblem"/>
</markerTypeCategory>
</extension>
+ <extension
+ point="org.eclipse.ui.keywords">
+ <keyword
+ id="org.eclipse.jdt.apt.ui.propertyPages.aptPreferences.keyword"
+ label="%preferenceKeywords.annotation.processing">
+ </keyword>
+ </extension>
</plugin>

Back to the top