jlaskowski    2005/06/19 18:40:33

  Modified:    modules/core/src/java/org/openejb/util/proxy Proxy.java
                        ProxyManager.java package.html
  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.2       +2 -4      
openejb1/modules/core/src/java/org/openejb/util/proxy/Proxy.java
  
  Index: Proxy.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/util/proxy/Proxy.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Proxy.java        26 Mar 2004 21:43:07 -0000      1.1
  +++ Proxy.java        19 Jun 2005 22:40:33 -0000      1.2
  @@ -51,7 +51,7 @@
   
   
   /**
  - * Superclass for dynamically generated proxyies.
  + * Superclass for dynamically generated proxies.
    *
    * This class implements convenience methods that allow us to
    * generate proxies with considerably less byte-code.
  @@ -80,14 +80,12 @@
       /**
        * Used as the Class array in the Class.getMethod( String methodName, 
Class[] argTypes )
        * method when the interface method does not define any arguments.
  -     * @see java.lang.Class.getMethod
        */
       protected static final Class[] NO_ARGS_C = new Class[0];
   
       /**
        * Used as the Object array in the Method.invoke( Object obj, Object[] 
args )
        * method when the interface method does not define any arguments.
  -     * @see java.lang.reflect.Method.invoke
        */
       protected static final Object[] NO_ARGS_O = new Object[0];
   
  
  
  
  1.2       +4 -4      
openejb1/modules/core/src/java/org/openejb/util/proxy/ProxyManager.java
  
  Index: ProxyManager.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/util/proxy/ProxyManager.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProxyManager.java 26 Mar 2004 21:43:08 -0000      1.1
  +++ ProxyManager.java 19 Jun 2005 22:40:33 -0000      1.2
  @@ -141,7 +141,7 @@
        * the VM.
        *
        * @param interfaceType
  -     * @return
  +     * @return Class
        * @exception IllegalAccessException
        */
       public static Class getProxyClass(Class interfaceType) throws 
IllegalAccessException{
  @@ -160,7 +160,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 {
  @@ -174,7 +174,7 @@
       /**
        *
        * @param cl
  -     * @return
  +     * @return boolean
        */
       public static boolean isProxyClass(Class cl) {
           checkDefaultFactory();
  
  
  
  1.3       +2 -3      
openejb1/modules/core/src/java/org/openejb/util/proxy/package.html
  
  Index: package.html
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/util/proxy/package.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- package.html      8 Jul 2004 11:55:27 -0000       1.2
  +++ package.html      19 Jun 2005 22:40:33 -0000      1.3
  @@ -67,8 +67,7 @@
   
   <!-- Put @see and @since tags down here. -->
   @see org.openejb.core.ContainerSystem
  [EMAIL PROTECTED] org.openejb.core.ContainerManager
  [EMAIL PROTECTED] org.openejb.core.Container
  [EMAIL PROTECTED] org.openejb.Container
   @see org.openejb.core.DeploymentInfo
   </body>
   </html>
  
  
  

Reply via email to