01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tcspring;
05:
06: import org.springframework.beans.factory.BeanFactory;
07:
08: /**
09: * Introduction interface to save an accessible copy of BeanFactory
10: *
11: * @author Liyu Yi
12: */
13: public interface BeanFactoryAware {
14: public void tc$setBeanFactory(BeanFactory factory);
15:
16: public BeanFactory tc$getBeanFactory();
17: }
|