mcconnell 2003/01/09 04:32:05 Modified: fortress/src/java/org/apache/excalibur/fortress/handler PassThroughInvocationHandler.java ProxyObjectFactory.java Log: javadoc Revision Changes Path 1.4 +2 -2 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/PassThroughInvocationHandler.java Index: PassThroughInvocationHandler.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/PassThroughInvocationHandler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- PassThroughInvocationHandler.java 9 Nov 2002 07:44:38 -0000 1.3 +++ PassThroughInvocationHandler.java 9 Jan 2003 12:32:05 -0000 1.4 @@ -14,7 +14,7 @@ /** * InvocationHandler that just passes on all methods to target object. * - * @author <a href="mailto:peter at apache.org">Peter Donald</a> + * @author <a href="mailto:avalon-dev@jakarta.apache.org">Avalon Development Team</a> */ final class PassThroughInvocationHandler implements InvocationHandler @@ -46,7 +46,7 @@ * @param meth the method * @param args the arguments * @return the return value of object - * @throws Throwable method throws an exception + * @exception Throwable method throws an exception */ public Object invoke( final Object proxy, final Method meth, 1.2 +5 -4 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/ProxyObjectFactory.java Index: ProxyObjectFactory.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/ProxyObjectFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ProxyObjectFactory.java 9 Nov 2002 04:46:18 -0000 1.1 +++ ProxyObjectFactory.java 9 Jan 2003 12:32:05 -0000 1.2 @@ -13,7 +13,7 @@ * An ObjectFactory that delegates to another ObjectFactory * and proxies results of that factory. * - * @author <a href="mailto:peter at apache.org">Peter Donald</a> + * @author <a href="mailto:avalon-dev@jakarta.apache.org">Avalon Development Team</a> * @version $Revision$ $Date$ */ public class ProxyObjectFactory @@ -28,8 +28,9 @@ * Create factory that delegates to specified factory. * * @param objectFactory the factory to delegate to + * @exception NullPointerException if the supplied object factory is null */ - public ProxyObjectFactory( final ObjectFactory objectFactory ) + public ProxyObjectFactory( final ObjectFactory objectFactory ) throws NullPointerException { if( null == objectFactory ) { @@ -43,7 +44,7 @@ * Create a new instance from delegated factory and proxy it. * * @return the proxied object - * @throws Exception if unabel to create new instance + * @throws Exception if unable to create new instance */ public Object newInstance() throws Exception
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>