jlaskowski 2005/06/19 18:40:31
Modified: modules/core/src/java/org/openejb/client/proxy
Jdk13InvocationHandler.java Jdk13ProxyFactory.java
ProxyFactory.java ProxyManager.java
Log:
A step towards cutting the 1.0 release:
o openejb:release goal to cut a release
o polishing the sources so that javadoc is built without any errors or
warnings
o Add javadoc to release in openejb:release
Revision Changes Path
1.3 +4 -4
openejb1/modules/core/src/java/org/openejb/client/proxy/Jdk13InvocationHandler.java
Index: Jdk13InvocationHandler.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/client/proxy/Jdk13InvocationHandler.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Jdk13InvocationHandler.java 16 Jun 2005 22:29:51 -0000 1.2
+++ Jdk13InvocationHandler.java 19 Jun 2005 22:40:31 -0000 1.3
@@ -85,7 +85,7 @@
/**
* Returns the InvocationHandler that will receive all the calls on the
proxy
*
- * @return
+ * @return InvocationHandler
*/
public InvocationHandler getInvocationHandler() {
return delegate;
@@ -95,7 +95,7 @@
* Sets the InvocationHandler that will receive all the calls on the
proxy
*
* @param handler
- * @return
+ * @return InvocationHandler
*/
public InvocationHandler setInvocationHandler(InvocationHandler handler)
{
InvocationHandler old = delegate;
@@ -110,7 +110,7 @@
* @param proxy
* @param method
* @param args
- * @return
+ * @return Object
* @exception Throwable
*/
public Object invoke(Object proxy, Method method, Object[] args) throws
Throwable {
1.3 +7 -7
openejb1/modules/core/src/java/org/openejb/client/proxy/Jdk13ProxyFactory.java
Index: Jdk13ProxyFactory.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/client/proxy/Jdk13ProxyFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Jdk13ProxyFactory.java 16 Jun 2005 22:29:51 -0000 1.2
+++ Jdk13ProxyFactory.java 19 Jun 2005 22:40:31 -0000 1.3
@@ -119,7 +119,7 @@
* and an array of interfaces.
*
* @param interfce
- * @return
+ * @return Class
* @exception IllegalArgumentException
*/
public Class getProxyClass(Class interfce) throws
IllegalArgumentException {
@@ -131,7 +131,7 @@
* and an array of interfaces.
*
* @param interfaces
- * @return
+ * @return Class
* @exception IllegalArgumentException
*/
public Class getProxyClass(Class[] interfaces) throws
IllegalArgumentException {
@@ -148,7 +148,7 @@
* method.
*
* @param cl
- * @return
+ * @return boolean
*/
public boolean isProxyClass(Class cl) {
return Proxy.isProxyClass(cl);
@@ -159,7 +159,7 @@
* Creates a new proxy instance using the handler of the proxy passed in.
*
* @param proxyClass
- * @return
+ * @return Object
* @exception IllegalArgumentException
*/
public Object newProxyInstance(Class proxyClass) throws
IllegalArgumentException {
@@ -189,7 +189,7 @@
*
* @param interfce
* @param h
- * @return
+ * @return Object
* @exception IllegalArgumentException
*/
public Object newProxyInstance(Class interfce, InvocationHandler h)
throws IllegalArgumentException {
@@ -205,7 +205,7 @@
*
* @param interfaces
* @param h
- * @return
+ * @return Object
* @exception IllegalArgumentException
*/
public Object newProxyInstance(Class[] interfaces, InvocationHandler h)
throws IllegalArgumentException {
1.3 +7 -7
openejb1/modules/core/src/java/org/openejb/client/proxy/ProxyFactory.java
Index: ProxyFactory.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/client/proxy/ProxyFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ProxyFactory.java 16 Jun 2005 22:29:51 -0000 1.2
+++ ProxyFactory.java 19 Jun 2005 22:40:31 -0000 1.3
@@ -77,7 +77,7 @@
* and an array of interfaces.
*
* @param interfce
- * @return
+ * @return Class
* @exception IllegalArgumentException
*/
public Class getProxyClass(Class interfce) throws
IllegalArgumentException;
@@ -87,7 +87,7 @@
* and an array of interfaces.
*
* @param interfaces
- * @return
+ * @return Class
* @exception IllegalArgumentException
*/
public Class getProxyClass(Class[] interfaces) throws
IllegalArgumentException;
@@ -98,7 +98,7 @@
* method.
*
* @param cl
- * @return
+ * @return boolean
*/
public boolean isProxyClass(Class cl);
@@ -108,7 +108,7 @@
*
* @param interfce
* @param h
- * @return
+ * @return Object
* @exception IllegalArgumentException
*/
public Object newProxyInstance(Class interfce, InvocationHandler h)
throws IllegalArgumentException;
@@ -119,7 +119,7 @@
*
* @param interfaces
* @param h
- * @return
+ * @return Object
* @exception IllegalArgumentException
*/
public Object newProxyInstance(Class[] interfaces, InvocationHandler h)
throws IllegalArgumentException;
@@ -131,7 +131,7 @@
* depending on the implementation.
*
* @param proxyClass
- * @return
+ * @return Object
* @exception java.lang.IllegalArgumentException
* Occurs when the specified class is not a proxy
class.
* @exception IllegalArgumentException
1.3 +4 -4
openejb1/modules/core/src/java/org/openejb/client/proxy/ProxyManager.java
Index: ProxyManager.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/client/proxy/ProxyManager.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ProxyManager.java 16 Jun 2005 22:29:51 -0000 1.2
+++ ProxyManager.java 19 Jun 2005 22:40:31 -0000 1.3
@@ -148,7 +148,7 @@
* Loads and returns the proxy implementation for the specified
interface.
*
* @param interfaceType
- * @return
+ * @return Class
* @exception IllegalAccessException
*/
public static Class getProxyClass(Class interfaceType) throws
IllegalAccessException{
@@ -167,7 +167,7 @@
* A bean's home or remote interface that the Proxy
* object should implement.
* @param h
- * @return
+ * @return Object
* @exception IllegalAccessException
*/
public static Object newProxyInstance(Class interfaceType,
InvocationHandler h) throws IllegalAccessException {
@@ -181,7 +181,7 @@
/**
*
* @param cl
- * @return
+ * @return boolean
*/
public static boolean isProxyClass(Class cl) {
return defaultFactory.isProxyClass(cl);