Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Georgi2014-12-31 14:35:55 +0000
committerPascal Rapicault2015-03-31 17:00:04 +0000
commitf0966580855884e5394a8eefe84668adf30ca20a (patch)
treedca0c1e0da80298da61e3e65d237fa91307b1c19 /bundles/org.eclipse.equinox.p2.core
parent78b280357284b0385ce46a57ab4afdcd6ae8e78d (diff)
downloadrt.equinox.p2-f0966580855884e5394a8eefe84668adf30ca20a.tar.gz
rt.equinox.p2-f0966580855884e5394a8eefe84668adf30ca20a.tar.xz
rt.equinox.p2-f0966580855884e5394a8eefe84668adf30ca20a.zip
Check for Windows packages using Windows registry
Bug: 456811 Change-Id: I4bce66b7a8ffe1f2844d5a3f3f19c6a8e1c96bee Signed-off-by: Christian Georgi <christian.georgi@sap.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.core')
-rw-r--r--bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/UIServices.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/UIServices.java b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/UIServices.java
index 0571b5c9c..4b378bcaf 100644
--- a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/UIServices.java
+++ b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/UIServices.java
@@ -148,9 +148,10 @@ public abstract class UIServices {
* Opens an information dialog
* @param title - the title of the dialog
* @param text - the text shown in the dialog
+ * @param linkText - an optional text to be rendered as hyperlink
* @since 2.4
*/
- public void showInformationMessage(String title, String text) {
+ public void showInformationMessage(String title, String text, String linkText) {
System.out.println(text);
}
}

Back to the top