Examples of NullLogger


Examples of org.apache.avalon.framework.logger.NullLogger

     */
    public PrepareHandlerCommand( final ComponentHandler handler,
                                  final Logger logger )
    {
        m_handler = handler;
        m_logger = ( null == logger ) ? new NullLogger() : logger;
    }
View Full Code Here

Examples of org.codehaus.plexus.logging.NullLogger

        {
            logger = containerLogger;
        }
        else
        {
            logger = new NullLogger();
        }
    }
View Full Code Here

Examples of org.jacorb.test.common.NullLogger

        final PortRangeSocketFactory factory = new PortRangeSocketFactory();

        MockControl configControl = MockControl.createControl(Configuration.class);
        Configuration configMock = (Configuration) configControl.getMock();

        configControl.expectAndReturn(configMock.getLogger("jacorb.orb.socketfactory"), new NullLogger());
        configControl.expectAndReturn(configMock.getAttributeAsInteger(PortRangeSocketFactory.MIN_PROP), MIN);
        configControl.expectAndReturn(configMock.getAttributeAsInteger(PortRangeSocketFactory.MAX_PROP), MAX);
        configControl.replay();

        factory.configure(configMock);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.