01: /*
02: * Created on Mar 17, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.core;
08:
09: import org.xdev.base.core.compiler.AXCompiler;
10: import org.xdev.base.resource.IDataSource;
11:
12: /**
13: * @author AYegorov
14: *
15: * To change the template for this generated type comment go to
16: * Window>Preferences>Java>Code Generation>Code and Comments
17: */
18: public interface ITransactionController {
19: abstract IDataSource getDataSource(String id);
20:
21: abstract AXCompiler getCompiler();
22: }
|