Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query')
-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
2 files changed, 6 insertions, 6 deletions
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