1 /*
2 * Created on Jun 1, 2004
3 *
4 */
5 package org.neo.swarm;
6
7
8 /***
9 * Components that implement this require an ApplicationContext handle when injected. Typically used when
10 * preexisting components are passed between containers (i.e. MobileAgents).
11 * @author navery
12 */
13 public interface AppContextBinding {
14 public void bind(ApplicationContext context);
15 }