Author: cziegeler
Date: Fri Jul 8 05:45:36 2016
New Revision: 1751857
URL: http://svn.apache.org/viewvc?rev=1751857&view=rev
Log:
Fix javadocs
Modified:
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/BundleFileProcessor.java
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/RankedServices.java
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/ServiceUtil.java
Modified:
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/BundleFileProcessor.java
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/BundleFileProcessor.java?rev=1751857&r1=1751856&r2=1751857&view=diff
==============================================================================
---
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/BundleFileProcessor.java
(original)
+++
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/BundleFileProcessor.java
Fri Jul 8 05:45:36 2016
@@ -44,11 +44,19 @@ public abstract class BundleFileProcesso
this.outputFolder = outputFolder;
}
- /** Process the bundle Manifest. Can return the original
- * one if no changes are needed */
+ /**
+ * Process the bundle Manifest. Can return the original
+ * one if no changes are needed.
+ * @param originalManifest The manifest to process
+ * @return The processed manifest.
+ */
protected abstract Manifest processManifest(Manifest originalManifest);
- /** Return the filename to use for the newly created bundle file */
+ /**
+ * Return the filename to use for the newly created bundle file
+ * @param inputJarManifest The manifest
+ * @return The filename
+ */
protected abstract String getTargetFilename(Manifest inputJarManifest);
/**
Modified:
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/RankedServices.java
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/RankedServices.java?rev=1751857&r1=1751856&r2=1751857&view=diff
==============================================================================
---
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/RankedServices.java
(original)
+++
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/RankedServices.java
Fri Jul 8 05:45:36 2016
@@ -79,7 +79,7 @@ public final class RankedServices<T> imp
/**
* Instantiate without change listener in ascending order (lowest service
ranking first).
- * @deprecated Use {@link #RankedService(Order)} to explicitly give the
order.
+ * @deprecated Use {@link #RankedServices(Order)} to explicitly give the
order.
*/
@Deprecated
public RankedServices() {
Modified:
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/ServiceUtil.java
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/ServiceUtil.java?rev=1751857&r1=1751856&r2=1751857&view=diff
==============================================================================
---
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/ServiceUtil.java
(original)
+++
sling/trunk/bundles/commons/osgi/src/main/java/org/apache/sling/commons/osgi/ServiceUtil.java
Fri Jul 8 05:45:36 2016
@@ -34,7 +34,7 @@ public class ServiceUtil {
/**
* @deprecated Use {@link #getComparableForServiceRanking(Map, Order)}
instead.
* @param props The service properties.
- * @return the same comparable as returned by {@link
#getComparableForServiceRanking(Map, Order.ASCENDING)}
+ * @return the same comparable as returned by {@code
getComparableForServiceRanking(Map, Order.ASCENDING)}
* @see #getComparableForServiceRanking(Map, Order)
*/
@Deprecated