From 5146854858f47906e61815f8293b5b3c0c39c048 Mon Sep 17 00:00:00 2001 From: John Arthorne Date: Mon, 22 Mar 2010 20:51:35 +0000 Subject: fixed javadoc errors --- .../eclipse/equinox/internal/p2/discovery/Catalog.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'bundles/org.eclipse.equinox.p2.discovery') diff --git a/bundles/org.eclipse.equinox.p2.discovery/src/org/eclipse/equinox/internal/p2/discovery/Catalog.java b/bundles/org.eclipse.equinox.p2.discovery/src/org/eclipse/equinox/internal/p2/discovery/Catalog.java index e4accd060..411854d96 100644 --- a/bundles/org.eclipse.equinox.p2.discovery/src/org/eclipse/equinox/internal/p2/discovery/Catalog.java +++ b/bundles/org.eclipse.equinox.p2.discovery/src/org/eclipse/equinox/internal/p2/discovery/Catalog.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009 Tasktop Technologies and others. + * Copyright (c) 2009, 2010 Tasktop Technologies 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 @@ -141,14 +141,14 @@ public class Catalog { /** * get a list of known certifications * - * @return the certifications, or an ampty list if there are none. + * @return the certifications, or an empty list if there are none. */ public List getCertifications() { return certifications; } /** - * The environment used to resolve {@link AbstractCatalogItem#getPlatformFilter() platform filters}. Defaults to the + * The environment used to resolve {@link CatalogItem#getPlatformFilter() platform filters}. Defaults to the * current environment. */ public Dictionary getEnvironment() { @@ -156,7 +156,7 @@ public class Catalog { } /** - * The environment used to resolve {@link AbstractCatalogItem#getPlatformFilter() platform filters}. Defaults to the + * The environment used to resolve {@link CatalogItem#getPlatformFilter() platform filters}. Defaults to the * current environment. */ public void setEnvironment(Dictionary environment) { @@ -170,7 +170,7 @@ public class Catalog { * indicate if update site availability should be verified. The default is false. * * @see CatalogItem#getAvailable() - * @see #verifySiteAvailability(IProgressMonitor) + * @see #setVerifyUpdateSiteAvailability(boolean) */ public boolean isVerifyUpdateSiteAvailability() { return verifyUpdateSiteAvailability; @@ -180,7 +180,7 @@ public class Catalog { * indicate if update site availability should be verified. The default is false. * * @see CatalogItem#getAvailable() - * @see #verifySiteAvailability(IProgressMonitor) + * @see #isVerifyUpdateSiteAvailability() */ public void setVerifyUpdateSiteAvailability(boolean verifyUpdateSiteAvailability) { this.verifyUpdateSiteAvailability = verifyUpdateSiteAvailability; @@ -188,7 +188,7 @@ public class Catalog { /** * not for general use: public for testing purposes only A map of installed features to their version. Used - * to resolve {@link AbstractCatalogItem#getFeatureFilter() feature filters}. + * to resolve {@link CatalogItem#getFeatureFilter() feature filters}. */ public Map getFeatureToVersion() { return featureToVersion; @@ -196,7 +196,7 @@ public class Catalog { /** * not for general use: public for testing purposes only A map of installed features to their version. Used - * to resolve {@link AbstractCatalogItem#getFeatureFilter() feature filters}. + * to resolve {@link CatalogItem#getFeatureFilter() feature filters}. */ public void setFeatureToVersion(Map featureToVersion) { this.featureToVersion = featureToVersion; @@ -246,7 +246,7 @@ public class Catalog { } /** - * eliminate any connectors whose {@link AbstractCatalogItem#getPlatformFilter() platform filters} don't match + * eliminate any connectors whose {@link CatalogItem#getPlatformFilter() platform filters} don't match */ private void filterDescriptors() { for (CatalogItem connector : new ArrayList(items)) { -- cgit v1.2.3