You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by jb...@apache.org on 2020/05/20 09:27:52 UTC

[aries] branch trunk updated: Fix proxy api javadoc

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/aries.git


The following commit(s) were added to refs/heads/trunk by this push:
     new efbce32  Fix proxy api javadoc
efbce32 is described below

commit efbce3202be09703eebb71b830cb32579e948990
Author: jbonofre <jb...@apache.org>
AuthorDate: Wed May 20 11:28:45 2020 +0200

    Fix proxy api javadoc
---
 .../src/main/java/org/apache/aries/proxy/ProxyManager.java          | 6 +++---
 .../main/java/org/apache/aries/proxy/weavinghook/WeavingHelper.java | 4 +---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java b/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java
index 9c167e3..d3634b1 100644
--- a/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java
+++ b/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java
@@ -60,8 +60,8 @@ public interface ProxyManager
   
   /**
    * Creates a single proxy that both delegates and intercepts. See
-   * {ProxyManager{@link #createDelegatingProxy(Bundle, Collection, Callable)} 
-   * and {ProxyManager{@link #createInterceptingProxy(Bundle, Collection, Object, InvocationListener)}
+   * ProxyManager.createDelegatingProxy(Bundle, Collection, Callable) 
+   * and ProxyManager.createInterceptingProxy(Bundle, Collection, Object, InvocationListener)
    * 
    * @param clientBundle
    * @param classes
@@ -85,7 +85,7 @@ public interface ProxyManager
   public Callable<Object> unwrap(Object proxy);
   /**
    * Returns true if and only if the specified object was generated by the ProxyManager. See
-   * {@link ProxyManager#createDelegatingProxy(Bundle,Collection,Callable)} for details on how to create a proxy. 
+   * ProxyManager.createDelegatingProxy(Bundle, Collection, Callable) for details on how to create a proxy. 
    * @param proxy The proxy object to test
    * @return      true if it is a proxy, false otherwise.
    */
diff --git a/proxy/proxy-api/src/main/java/org/apache/aries/proxy/weavinghook/WeavingHelper.java b/proxy/proxy-api/src/main/java/org/apache/aries/proxy/weavinghook/WeavingHelper.java
index 636de8b..fc0c957 100644
--- a/proxy/proxy-api/src/main/java/org/apache/aries/proxy/weavinghook/WeavingHelper.java
+++ b/proxy/proxy-api/src/main/java/org/apache/aries/proxy/weavinghook/WeavingHelper.java
@@ -24,8 +24,6 @@ import org.osgi.framework.hooks.weaving.WovenClass;
  * This provides helper methods to allow a ProxyWeavingController to make
  * sensible decisions without needing to know how the ProxyManager has implemented
  * the weaving support.
- * 
- * @noimplement
  */
 public interface WeavingHelper
 {
@@ -44,4 +42,4 @@ public interface WeavingHelper
    * @return true if it is woven, false otherwise.
    */
   public boolean isSuperClassWoven(WovenClass wovenClass);
-}
\ No newline at end of file
+}