Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-01-13 19:14:25 +0000
committerJohn Arthorne2010-01-13 19:14:25 +0000
commit80f9247589cad1dd51105c9d0f170d87cd19c94b (patch)
tree6f327baeaa15560ca12e3a20e03e5bfb83fffa6d /bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
parenta9e3113fe8aa030ea0f7fc86bdf8c57f140625d8 (diff)
downloadrt.equinox.p2-80f9247589cad1dd51105c9d0f170d87cd19c94b.tar.gz
rt.equinox.p2-80f9247589cad1dd51105c9d0f170d87cd19c94b.tar.xz
rt.equinox.p2-80f9247589cad1dd51105c9d0f170d87cd19c94b.zip
javadoc
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
index 8cdb7c0d1..cd143acde 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/p2/touchpoint/eclipse/query/OSGiBundleQuery.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -21,6 +21,9 @@ import org.eclipse.equinox.p2.query.MatchQuery;
*/
public class OSGiBundleQuery extends MatchQuery<IInstallableUnit> {
+ /* (non-Javadoc)
+ * @see org.eclipse.equinox.p2.query.MatchQuery#isMatch(java.lang.Object)
+ */
public boolean isMatch(IInstallableUnit candidate) {
return isOSGiBundle(candidate);
}

Back to the top