1 /***************************************************************************** 2 * Copyright (c) PicoContainer Organization. All rights reserved. * 3 * ------------------------------------------------------------------------- * 4 * The software in this package is published under the terms of the BSD * 5 * style license a copy of which has been included with this distribution in * 6 * the license.html file. * 7 *****************************************************************************/ 8 package org.picocontainer.testmodel; 9 10 import org.picocontainer.Disposable; 11 import org.picocontainer.Startable; 12 13 14 public class NullLifecycle implements Startable, Disposable { 15 16 public void start() { 17 } 18 19 public void stop() { 20 } 21 22 public void dispose() { 23 } 24 25 }