Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-01-23 14:19:59 +0000
committerThomas Watson2012-01-23 14:19:59 +0000
commitced11a9283958f26a87d033c4c15cc5ac780311b (patch)
tree154d0c1ca7895547ea2879c685f22997170a71d2
parent5748d1c903a83f0aa4f9447ba2c3835716c8ef7b (diff)
downloadrt.equinox.framework-ced11a9283958f26a87d033c4c15cc5ac780311b.tar.gz
rt.equinox.framework-ced11a9283958f26a87d033c4c15cc5ac780311b.tar.xz
rt.equinox.framework-ced11a9283958f26a87d033c4c15cc5ac780311b.zip
Bug 369306 - PluginConverter.convertManifest javadoc ask for a directoryv20120123-1419
when archives are supported
-rw-r--r--bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java
index 097d58fca..a5be77a3a 100644
--- a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java
+++ b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2003, 2010 IBM Corporation and others.
+ * Copyright (c) 2003, 2012 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
@@ -24,11 +24,11 @@ import java.util.Dictionary;
*/
public interface PluginConverter {
/**
- * Converts a plug-in/fragment manifest at the given source base location (a directory) and
- * generates a corresponding bundle manifest at the given default target locaton (a file).
+ * Converts a plug-in/fragment manifest at the given source base location (a directory or jar file) and
+ * generates a corresponding bundle manifest at the given default target location (a file).
*
* @param pluginBaseLocation the base location for the plug-in/fragment manifest to be converted
- * (a directory, e.g. the plug-in install location)
+ * (a directory or jar file, e.g. the plug-in install location)
* @param bundleManifestLocation the location for the bundle manifest to be generated
* (including the file name).
* @param compatibilityManifest a boolean indicating if the manifest should contain headers to run
@@ -44,11 +44,11 @@ public interface PluginConverter {
public File convertManifest(File pluginBaseLocation, File bundleManifestLocation, boolean compatibilityManifest, String target, boolean analyseJars, Dictionary<String, String> devProperties) throws PluginConversionException;
/**
- * Converts a plug-in/fragment manifest at the given source base location (a directory) and
+ * Converts a plug-in/fragment manifest at the given source base location (a directory or jar file) and
* generates a corresponding bundle manifest returned as a dictionary.
*
* @param pluginBaseLocation the base location for the plug-in/fragment manifest to be converted
- * (a directory, e.g. the plug-in install location)
+ * (a directory or jar file, e.g. the plug-in install location)
* @param compatibility a boolean indicating if the manifest should contain headers to run
* in backward compatibility
* @param target a string indicating the version of the runtime for which the manifest generated is targeted

Back to the top