diff options
author | John Arthorne | 2009-12-07 21:10:55 +0000 |
---|---|---|
committer | John Arthorne | 2009-12-07 21:10:55 +0000 |
commit | 06c29edd5b0b0a792f3f6373e40147c13cfec1dd (patch) | |
tree | ffb810ceac5b05bd254b0f825dae5c8e7c877710 | |
parent | 9eb7d696da5a172d9f833ee134e99ce390653f5a (diff) | |
download | rt.equinox.p2-06c29edd5b0b0a792f3f6373e40147c13cfec1dd.tar.gz rt.equinox.p2-06c29edd5b0b0a792f3f6373e40147c13cfec1dd.tar.xz rt.equinox.p2-06c29edd5b0b0a792f3f6373e40147c13cfec1dd.zip |
fixed javadoc errors
2 files changed, 5 insertions, 14 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/eclipse/BundlesAction.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/eclipse/BundlesAction.java index 2c198fa0e..664c56848 100644 --- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/eclipse/BundlesAction.java +++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/eclipse/BundlesAction.java @@ -10,8 +10,6 @@ ******************************************************************************/ package org.eclipse.equinox.p2.publisher.eclipse; -import org.eclipse.equinox.p2.metadata.IInstallableUnit; - import java.io.*; import java.util.*; import java.util.jar.JarFile; @@ -30,8 +28,7 @@ import org.eclipse.equinox.internal.provisional.p2.metadata.Version; import org.eclipse.equinox.internal.provisional.p2.metadata.VersionRange; import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitDescription; import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitFragmentDescription; -import org.eclipse.equinox.p2.metadata.IArtifactKey; -import org.eclipse.equinox.p2.metadata.IRequirement; +import org.eclipse.equinox.p2.metadata.*; import org.eclipse.equinox.p2.publisher.*; import org.eclipse.equinox.p2.publisher.actions.*; import org.eclipse.equinox.p2.repository.artifact.IArtifactDescriptor; @@ -69,7 +66,6 @@ public class BundlesAction extends AbstractPublisherAction { /** * A capability name in the {@link PublisherHelper#NAMESPACE_ECLIPSE_TYPE} namespace * representing and OSGi bundle resource - * @see IRequirement#getName() * @see IProvidedCapability#getName() */ public static final String TYPE_ECLIPSE_BUNDLE = "bundle"; //$NON-NLS-1$ @@ -77,7 +73,7 @@ public class BundlesAction extends AbstractPublisherAction { /** * A capability name in the {@link PublisherHelper#NAMESPACE_ECLIPSE_TYPE} namespace * representing a source bundle - * @see IRequirement#getName() + * @see IProvidedCapability#getName() */ public static final String TYPE_ECLIPSE_SOURCE = "source"; //$NON-NLS-1$ diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java index ba3988f70..503e388de 100644 --- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java +++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java @@ -12,8 +12,6 @@ *******************************************************************************/ package org.eclipse.equinox.spi.p2.publisher; -import org.eclipse.equinox.p2.metadata.IInstallableUnit; - import java.io.*; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; @@ -23,8 +21,7 @@ import org.eclipse.equinox.internal.p2.metadata.InstallableUnit; import org.eclipse.equinox.internal.provisional.p2.metadata.*; import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitDescription; import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitFragmentDescription; -import org.eclipse.equinox.p2.metadata.IArtifactKey; -import org.eclipse.equinox.p2.metadata.IRequirement; +import org.eclipse.equinox.p2.metadata.*; import org.eclipse.equinox.p2.publisher.IPublisherInfo; import org.eclipse.equinox.p2.publisher.PublisherInfo; import org.eclipse.equinox.p2.publisher.eclipse.*; @@ -42,7 +39,6 @@ import org.osgi.framework.Constants; public class PublisherHelper { /** * A capability namespace representing the type of Eclipse resource (bundle, feature, source bundle, etc) - * @see IRequirement#getNamespace() * @see IProvidedCapability#getNamespace() */ public static final String NAMESPACE_ECLIPSE_TYPE = "org.eclipse.equinox.p2.eclipse.type"; //$NON-NLS-1$ @@ -51,21 +47,20 @@ public class PublisherHelper { /** * A capability name in the {@link #NAMESPACE_ECLIPSE_TYPE} namespace * representing a feature - * @see IRequirement#getName() + * @see IProvidedCapability#getName() */ public static final String TYPE_ECLIPSE_FEATURE = "feature"; //$NON-NLS-1$ /** * A capability name in the {@link #NAMESPACE_ECLIPSE_TYPE} namespace * representing a source bundle - * @see IRequirement#getName() + * @see IProvidedCapability#getName() */ public static final String TYPE_ECLIPSE_SOURCE = "source"; //$NON-NLS-1$ /** * A capability namespace representing the localization (translation) * of strings from a specified IU in a specified locale - * @see IRequirement#getNamespace() * @see IProvidedCapability#getNamespace() * TODO: this should be in API, probably in IInstallableUnit */ |