Revision 20048

View differences:

trunk/libraries/libDataSourceDBBaseDrivers/src/org/gvsig/data/datastores/vectorial/db/jdbc/h2/H2Explorer.java
4 4

  
5 5
import org.gvsig.data.IDataExplorerParameters;
6 6
import org.gvsig.data.IDataStoreParameters;
7
import org.gvsig.data.INewDataStoreParameters;
7 8
import org.gvsig.data.datastores.vectorial.db.jdbc.JDBCExplorer;
8 9
import org.gvsig.data.exception.InitializeException;
9 10
import org.gvsig.data.exception.InitializeWriterException;
10 11
import org.gvsig.data.exception.OpenException;
11 12
import org.gvsig.data.exception.ReadException;
13
import org.gvsig.data.vectorial.IFeatureType;
12 14
import org.gvsig.data.vectorial.INewFeatureStoreParameters;
13 15

  
14 16
public class H2Explorer extends JDBCExplorer {
......
31 33
		return null;
32 34
	}
33 35

  
34
	public INewFeatureStoreParameters createNewDataStoreParameter(
36
	public INewDataStoreParameters createNewDataStoreParameter(
35 37
			IDataStoreParameters dsp) {
36 38
		// TODO Auto-generated method stub
37 39
		return null;
......
55 57
	}
56 58

  
57 59
	public IDataStoreParameters[] list() throws ReadException {
60
		Connection conn = this.getConnection();
61

  
62

  
63

  
64

  
65

  
66
		return null;
67
	}
68

  
69
	public IFeatureType[] getFeatureTypes(IDataStoreParameters dsp) throws ReadException {
58 70
		// TODO Auto-generated method stub
59 71
		return null;
60 72
	}
61 73

  
74
	public IDataStoreParameters add(INewDataStoreParameters ndsp) throws OpenException, InitializeWriterException {
75
		// TODO Auto-generated method stub
76
		return null;
77
	}
78

  
79

  
62 80
}
trunk/libraries/libDataSourceDBBaseDrivers/src/org/gvsig/data/datastores/vectorial/db/DBExplorer.java
4 4

  
5 5
public abstract class DBExplorer implements IFeatureStoreExplorer {
6 6

  
7
}
7
}

Also available in: Unified diff