1 /* Copyright (2005-2006) Schibsted Søk AS 2 * This file is part of Sesat Commons. 3 * 4 * Sesat Commons is free software: you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License as published by 6 * the Free Software Foundation, either version 3 of the License, or 7 * (at your option) any later version. 8 * 9 * Sesat Commons is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public License 15 * along with Sesat Commons. If not, see <http://www.gnu.org/licenses/>. 16 * 17 * BaseContext.java 18 * 19 * Created on 21 February 2006, 18:38 20 */ 21 22 package no.sesat.commons.ioc; 23 24 /** The Base Context all contexts describing a class's contextual 'inversion-of-control' (dependencies) must extend. 25 * This interface does not enforce any behaviour. It is only used so BasicInvocationHandler deals with contexts 26 * as a known BaseContext rather than just as Objects. That is it provides some type-safety. 27 * 28 * @version $Id: BaseContext.java 1127 2009-01-21 16:16:08Z ssmiweve $ 29 * @author <a href="mailto:mick@wever.org">Michael Semb Wever</a> 30 */ 31 public interface BaseContext { 32 33 }