Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IExpressionFactory.java4
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/package.html2
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/index/package.html2
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/package.html2
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/QueryUtil.java10
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/package.html2
6 files changed, 11 insertions, 11 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IExpressionFactory.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IExpressionFactory.java
index 43b61daff..cd4a2d4c4 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IExpressionFactory.java
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IExpressionFactory.java
@@ -374,8 +374,8 @@ public interface IExpressionFactory {
IExpression select(IExpression collection, IExpression lambda);
/**
- * Returns the variable that represents <code>this</this> in an expression
- * @return The <code>this</this> variable.
+ * Returns the variable that represents <code>this</code> in an expression
+ * @return The <code>this</code> variable.
*/
IExpression thisVariable();
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/package.html b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/package.html
index 04c524048..2be08cf18 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/package.html
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/package.html
@@ -11,6 +11,6 @@ Package Specification</h2>
This package defines a simple expression language that is used to define requirements and filters in the metadata, but also form the base of the p2 query language.
<p>
@since 2.0
-<p>
+</p>
</body>
</html>
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/index/package.html b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/index/package.html
index 3486d12fb..280ac3ada 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/index/package.html
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/index/package.html
@@ -13,6 +13,6 @@ This package provides API for creating and manipulating indices that are used
to optimize queries against a particular queryable source.
<p>
@since 2.0
-<p>
+</p>
</body>
</html>
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/package.html b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/package.html
index 8b40121ee..53d61d566 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/package.html
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/package.html
@@ -12,6 +12,6 @@ Package Specification</h2>
This API package defines the constructs being manipulated by p2 such as installable units.
<p>
@since 2.0
-<p>
+</p>
</body>
</html>
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/QueryUtil.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/QueryUtil.java
index 2cdf9a9de..679e63b3d 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/QueryUtil.java
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/QueryUtil.java
@@ -489,7 +489,7 @@ public class QueryUtil {
/**
* Test if the {@link IInstallableUnit} is a category.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter is a category.
+ * @return <code>true</code> if the parameter is a category.
*/
public static boolean isCategory(IInstallableUnit iu) {
String value = iu.getProperty(PROP_TYPE_CATEGORY);
@@ -501,7 +501,7 @@ public class QueryUtil {
/**
* Test if the {@link IInstallableUnit} is a fragment.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter is a fragment.
+ * @return <code>true</code> if the parameter is a fragment.
*/
public static boolean isFragment(IInstallableUnit iu) {
return iu instanceof IInstallableUnitFragment;
@@ -510,7 +510,7 @@ public class QueryUtil {
/**
* Test if the {@link IInstallableUnit} is a group.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter is a group.
+ * @return <code>true</code> if the parameter is a group.
*/
public static boolean isGroup(IInstallableUnit iu) {
String value = iu.getProperty(PROP_TYPE_GROUP);
@@ -522,7 +522,7 @@ public class QueryUtil {
/**
* Test if the {@link IInstallableUnit} is a product.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter is a group.
+ * @return <code>true</code> if the parameter is a group.
* @since 2.2
*/
public static boolean isProduct(IInstallableUnit iu) {
@@ -535,7 +535,7 @@ public class QueryUtil {
/**
* Test if the {@link IInstallableUnit} is a patch.
* @param iu the element being tested.
- * @return <tt>true</tt> if the parameter is a patch.
+ * @return <code>true</code> if the parameter is a patch.
*/
public static boolean isPatch(IInstallableUnit iu) {
String value = iu.getProperty(PROP_TYPE_PATCH);
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/package.html b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/package.html
index ddcfd40e9..e6deda2cd 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/package.html
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/package.html
@@ -13,6 +13,6 @@ This package provide low level infrastructure for querying collections of metada
Additional queries can be found in the org.eclipse.equinox.p2.metadata.query package and more domain specific queries can be found in the touchpoints.
<p>
@since 2.0
-<p>
+</p>
</body>
</html>

Back to the top