001 /*****************************************************************************
002 * Copyright (c) PicoContainer Organization. All rights reserved. *
003 * ------------------------------------------------------------------------- *
004 * The software in this package is published under the terms of the BSD *
005 * style license a copy of which has been included with this distribution in *
006 * the license.html file. *
007 *****************************************************************************/
008 package org.picocontainer.testmodel;
009
010 import org.picocontainer.Disposable;
011 import org.picocontainer.Startable;
012
013
014 public class NullLifecycle implements Startable, Disposable {
015
016 public void start() {
017 }
018
019 public void stop() {
020 }
021
022 public void dispose() {
023 }
024
025 }