01: /*
02: * Created on Dec 15, 2003
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.resource;
08:
09: import org.xdev.base.core.object.*;
10:
11: import java.util.*;
12:
13: /**
14: * @author AYegorov
15: *
16: * To change the template for this generated type comment go to
17: * Window>Preferences>Java>Code Generation>Code and Comments
18: */
19: public abstract class AbstractDataSource extends Configuration
20: implements IDataSource {
21: /**
22: *
23: */
24: public AbstractDataSource() {
25: super ("", new HashMap());
26: // XXX Auto-generated constructor stub
27: }
28: }
|