[nobug] Add some UI descriptions Change-Id: I65e37c4bcd9db625ab7436aa360d36873bf749f7
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.jst.server.tomcat.ui/META-INF/MANIFEST.MF index a13b2c7..3e86043 100644 --- a/plugins/org.eclipse.jst.server.tomcat.ui/META-INF/MANIFEST.MF +++ b/plugins/org.eclipse.jst.server.tomcat.ui/META-INF/MANIFEST.MF
@@ -2,14 +2,14 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.jst.server.tomcat.ui; singleton:=true -Bundle-Version: 1.1.1000.qualifier +Bundle-Version: 1.1.1100.qualifier Bundle-Activator: org.eclipse.jst.server.tomcat.ui.internal.TomcatUIPlugin Bundle-Vendor: %providerName Bundle-Localization: plugin Export-Package: org.eclipse.jst.server.tomcat.ui.internal;x-internal:=true, org.eclipse.jst.server.tomcat.ui.internal.actions;x-internal:=true, org.eclipse.jst.server.tomcat.ui.internal.editor;x-internal:=true -Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)", +Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.28.0,4.0.0)", org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)", org.eclipse.core.expressions;bundle-version="[3.2.0,4.0.0)", org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/pom.xml b/plugins/org.eclipse.jst.server.tomcat.ui/pom.xml index c0b8f87..c0e10b5 100644 --- a/plugins/org.eclipse.jst.server.tomcat.ui/pom.xml +++ b/plugins/org.eclipse.jst.server.tomcat.ui/pom.xml
@@ -22,6 +22,6 @@ <groupId>org.eclipse.webtools.servertools</groupId> <artifactId>org.eclipse.jst.server.tomcat.ui</artifactId> - <version>1.1.1000-SNAPSHOT</version> + <version>1.1.1100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> </project>
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.java index c30180d..5869b84 100644 --- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.java +++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.java
@@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005, 2021 IBM Corporation and others. + * Copyright (c) 2005, 2023 IBM Corporation and others. * All rights reserved. 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 @@ -27,6 +27,7 @@ public static String selectInstallDir; public static String installing; public static String installedJRE; + public static String installedJREdescription; public static String installedJREs; public static String runtimeDefaultJRE; public static String editorAdd;
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.properties b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.properties index 8fcfc33..798ed37 100644 --- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.properties +++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/Messages.properties
@@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2004, 2021 IBM Corporation and others. +# Copyright (c) 2004, 2023 IBM Corporation and others. # All rights reserved. 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 @@ -19,6 +19,7 @@ installDialogTitle=Download and Install installDir=Tomcat installation &directory: installedJRE=&JRE: +installedJREdescription=The selected JRE defines the highest supported Java Facet version for this server runtime. installedJREs=&Installed JREs... selectInstallDir=Select parent for Tomcat installation directory. installing=Installing {0} @@ -27,7 +28,7 @@ # New Tomcat server wizard wizardTitle=Tomcat Server -wizardDescription=Specify the installation directory +wizardDescription=Specify the Tomcat installation directory and JRE for this runtime. The specified\nJRE controls the highest supported Java Facet version. # --------------- Editors ---------------
diff --git a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/TomcatRuntimeComposite.java b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/TomcatRuntimeComposite.java index bafe395..5eb4278 100644 --- a/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/TomcatRuntimeComposite.java +++ b/plugins/org.eclipse.jst.server.tomcat.ui/tomcatui/org/eclipse/jst/server/tomcat/ui/internal/TomcatRuntimeComposite.java
@@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2003, 2021 IBM Corporation and others. + * Copyright (c) 2003, 2023 IBM Corporation and others. * All rights reserved. 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 @@ -276,6 +276,7 @@ label.setLayoutData(data); combo = new Combo(this, SWT.DROP_DOWN | SWT.READ_ONLY); + combo.setToolTipText(Messages.installedJREdescription); combo.setItems(jreNames); data = new GridData(GridData.HORIZONTAL_ALIGN_FILL); combo.setLayoutData(data);