Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-08-24 17:32:32 +0000
committerMarkus Keller2016-08-24 17:32:32 +0000
commitbed9c77d1c33402e1902d2cbd33f9008774b7c49 (patch)
tree38e5b329db3349fd563140d94d28d66f72337bc1 /bundles
parent30280243e9f2431fc009ff143878810898d92503 (diff)
downloadrt.equinox.p2-bed9c77d1c33402e1902d2cbd33f9008774b7c49.tar.gz
rt.equinox.p2-bed9c77d1c33402e1902d2cbd33f9008774b7c49.tar.xz
rt.equinox.p2-bed9c77d1c33402e1902d2cbd33f9008774b7c49.zip
fixed Javadoc errors
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/pom.xml2
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/InstalledSoftwarePage.java6
3 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF
index 26306e9bb..2c1ebe554 100644
--- a/bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.p2.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.eclipse.equinox.p2.ui;singleton:=true
-Bundle-Version: 2.4.100.qualifier
+Bundle-Version: 2.4.200.qualifier
Bundle-Activator: org.eclipse.equinox.internal.p2.ui.ProvUIActivator
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/bundles/org.eclipse.equinox.p2.ui/pom.xml b/bundles/org.eclipse.equinox.p2.ui/pom.xml
index 211036bc4..46d9f9c03 100644
--- a/bundles/org.eclipse.equinox.p2.ui/pom.xml
+++ b/bundles/org.eclipse.equinox.p2.ui/pom.xml
@@ -19,6 +19,6 @@
</parent>
<groupId>org.eclipse.equinox</groupId>
<artifactId>org.eclipse.equinox.p2.ui</artifactId>
- <version>2.4.100-SNAPSHOT</version>
+ <version>2.4.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/InstalledSoftwarePage.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/InstalledSoftwarePage.java
index 0f7d105c5..8afeafa91 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/InstalledSoftwarePage.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/InstalledSoftwarePage.java
@@ -298,9 +298,9 @@ public class InstalledSoftwarePage extends InstallationPage implements ICopyable
* Filters {@link InstalledIUElement}s from a viewer using a String pattern.
* Filtering is dependent on a given array of {@link IUColumnConfig}s :
* <ul>
- * <li>if {@link IUColumnConfig.COLUMN_ID} is present, filters on the Installable Unit's id;</li>
- * <li>if {@link IUColumnConfig.COLUMN_NAME} is present, filters on the Installable Unit's name;</li>
- * <li>if {@link IUColumnConfig.COLUMN_PROVIDER} is present, filters on the Installable Unit's provider;</li>
+ * <li>if {@link IUColumnConfig#COLUMN_ID} is present, filters on the Installable Unit's id;</li>
+ * <li>if {@link IUColumnConfig#COLUMN_NAME} is present, filters on the Installable Unit's name;</li>
+ * <li>if {@link IUColumnConfig#COLUMN_PROVIDER} is present, filters on the Installable Unit's provider;</li>
* </ul>
*
* @since 2.3

Back to the top