bloritsch 2003/05/29 09:42:45 Modified: fortress/src/java/org/apache/avalon/fortress/impl/factory AbstractObjectFactory.java BCELWrapperGenerator.java Added: fortress/src/java/org/apache/avalon/fortress/impl/factory NoopObjectFactory.java Log: Fix JavaDoc, and add a new NoopObjectFactory to help when we don't want to have proxies. Caveat Emptor Revision Changes Path 1.5 +2 -2 avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/factory/AbstractObjectFactory.java Index: AbstractObjectFactory.java =================================================================== RCS file: /home/cvs/avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/factory/AbstractObjectFactory.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- AbstractObjectFactory.java 28 May 2003 16:11:01 -0000 1.4 +++ AbstractObjectFactory.java 29 May 2003 16:42:44 -0000 1.5 @@ -219,8 +219,8 @@ * Get a list of interfaces to proxy by scanning through * all interfaces a class implements. * - * @param clazz the class - * @param list the list of current work interfaces + * @param clazz the class + * @param workInterfaces the set of current work interfaces */ private static void guessWorkInterfaces( final Class clazz, final Set workInterfaces ) 1.4 +1 -1 avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/factory/BCELWrapperGenerator.java Index: BCELWrapperGenerator.java =================================================================== RCS file: /home/cvs/avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/factory/BCELWrapperGenerator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- BCELWrapperGenerator.java 14 May 2003 15:54:45 -0000 1.3 +++ BCELWrapperGenerator.java 29 May 2003 16:42:45 -0000 1.4 @@ -277,7 +277,7 @@ */ private JavaClass lookupClass( final Class clazz ) { - return Repository.lookupClass( clazz ); + return Repository.lookupClass( clazz.getName() ); } /** 1.1 avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/factory/NoopObjectFactory.java Index: NoopObjectFactory.java =================================================================== /* ============================================================================ The Apache Software License, Version 1.1 ============================================================================ Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved. Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 4. The names "Jakarta", "Avalon", "Excalibur" and "Apache Software Foundation" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact [EMAIL PROTECTED] 5. Products derived from this software may not be called "Apache", nor may "Apache" appear in their name, without prior written permission of the Apache Software Foundation. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU- DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see <http://www.apache.org/>. */ package org.apache.avalon.fortress.impl.factory; import org.apache.excalibur.mpool.ObjectFactory; /** * NoopObjectFactory is used in situations where no proxied objects are desired. You are offered * no protection with this approach, so caveat emptor. * * @author <a href="bloritsch.at.apache.org">Berin Loritsch</a> * @version CVS $ Revision: 1.1 $ */ public class NoopObjectFactory extends AbstractObjectFactory { public NoopObjectFactory( final ObjectFactory objectFactory ) { super(objectFactory); } public Object newInstance() throws Exception { return m_delegateFactory.newInstance(); } public void dispose( Object object ) throws Exception { m_delegateFactory.dispose( object ); } }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]