Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-10-12 06:42:15 +0000
committerLars Vogel2016-10-12 06:42:15 +0000
commitde97096fee9ea98c3bb90297f51633530ab5c41a (patch)
treea9ff3d6ca52f6454eda38c72c436bc72ebaad680
parent232de6af73cedc1cd71413b7198399d11ea7fda3 (diff)
downloadeclipse.platform.ui-de97096fee9ea98c3bb90297f51633530ab5c41a.tar.gz
eclipse.platform.ui-de97096fee9ea98c3bb90297f51633530ab5c41a.tar.xz
eclipse.platform.ui-de97096fee9ea98c3bb90297f51633530ab5c41a.zip
Bug 505680 - Add search term "freeze" and "delay" to UI Responsiveness
Monitor Change-Id: Ib7900dddd8459f7e5fc322c492fe77872195c53d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.monitoring/plugin.properties6
-rw-r--r--bundles/org.eclipse.ui.monitoring/plugin.xml10
2 files changed, 14 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.monitoring/plugin.properties b/bundles/org.eclipse.ui.monitoring/plugin.properties
index b9ba5e882d8..fe36f73b3e3 100644
--- a/bundles/org.eclipse.ui.monitoring/plugin.properties
+++ b/bundles/org.eclipse.ui.monitoring/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2014 Google, Inc and others.
+# Copyright (c) 2014, 2016 Google, Inc 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
@@ -8,9 +8,11 @@
# Contributors:
# Marcus Eng (Google) - initial API and implementation
# Sergey Prigogin (Google)
+# Lars Vogel (vogella)
###############################################################################
Bundle-Name=UI Responsiveness Monitoring
Bundle-Vendor=Eclipse.org
MonitoringPreferencePage.name=UI Responsiveness Monitoring
-UiFreezeEventLogger.name=UI Freeze Event Logger \ No newline at end of file
+UiFreezeEventLogger.name=UI Freeze Event Logger
+preferenceKeywords=Freeze Delay \ No newline at end of file
diff --git a/bundles/org.eclipse.ui.monitoring/plugin.xml b/bundles/org.eclipse.ui.monitoring/plugin.xml
index 498524e0e9b..90eacc054be 100644
--- a/bundles/org.eclipse.ui.monitoring/plugin.xml
+++ b/bundles/org.eclipse.ui.monitoring/plugin.xml
@@ -33,6 +33,16 @@
class="org.eclipse.ui.internal.monitoring.preferences.MonitoringPreferencePage"
id="org.eclipse.ui.monitoring.page"
name="%MonitoringPreferencePage.name">
+ <keywordReference
+ id="org.eclipse.ui.monitoring.preferenceKeywords">
+ </keywordReference>
</page>
</extension>
+ <extension
+ point="org.eclipse.ui.keywords">
+ <keyword
+ id="org.eclipse.ui.monitoring.preferenceKeywords"
+ label="%preferenceKeywords">
+ </keyword>
+ </extension>
</plugin>

Back to the top