Hi,
sorry messed up with the dummy jar again, here a patch Andrea, since it seems 
svn is not working for me right now (at least for this connection)

And yeah, hudson would be good.

Cheers,

Gabriel


On Monday 17 March 2008 09:07:21 am Andrea Aime wrote:
> Hi,
> trying to compile gt2 this morning led to the following compile
> failure:
>
> [INFO] Compilation failure
> C:\progetti\geotools\trunk\modules\plugin\arcsde\datastore\src\main\java\or
>g\geotools\arcsde\data\ArcSdeFeatureWriter.java:[644,10] exception
> com.esri.sde.sdk.client.SeException is never thrown in body of
> corresponding try statement
>
> I also noticed hudson is down.
> Cheers
> Andrea
>
> !DSPAM:4045,47de26bd284361015089218!


Index: src/main/java/com/esri/sde/sdk/client/SeRow.java
===================================================================
--- src/main/java/com/esri/sde/sdk/client/SeRow.java	(revision 29619)
+++ src/main/java/com/esri/sde/sdk/client/SeRow.java	(working copy)
@@ -12,7 +12,7 @@
 	
 	public SeColumnDefinition[] getColumns() { return null; }
 	public Object getObject(int i) throws SeException { return null; }
-	public SeColumnDefinition getColumnDef(int i) { return null; }
+	public SeColumnDefinition getColumnDef(int i) throws SeException{ return null; }
 	public void setInteger(int i, Integer b) {}
 	public void setShort(int i, Short s) {}
 	public void setFloat(int i, Float f) {}
@@ -27,6 +27,7 @@
 	public int getIndicator(int i) { return -1; }
     public Level getInteger(int i) throws SeException {return null;}
     public void setLong(int index, Long value) {}
+    public SeShape getShape(int i) {return null;}
 	
 	
 }
Index: src/main/java/com/esri/sde/sdk/client/SeQuery.java
===================================================================
--- src/main/java/com/esri/sde/sdk/client/SeQuery.java	(revision 29619)
+++ src/main/java/com/esri/sde/sdk/client/SeQuery.java	(working copy)
@@ -4,7 +4,9 @@
 
 public class SeQuery extends SeStreamOp {
 	
-	public SeQuery(SeConnection c)throws SeException {}
+	public static short SE_SPATIAL_FIRST = 0;
+
+    public SeQuery(SeConnection c)throws SeException {}
 	public SeQuery(SeConnection c, String[] s, SeSqlConstruct y) {}
 	
 	public static /* GEOT-947 final*/ short SE_OPTIMIZE = 0;
Index: src/main/java/com/esri/sde/sdk/client/SeRegistration.java
===================================================================
--- src/main/java/com/esri/sde/sdk/client/SeRegistration.java	(revision 29619)
+++ src/main/java/com/esri/sde/sdk/client/SeRegistration.java	(working copy)
@@ -1,5 +1,6 @@
 package com.esri.sde.sdk.client;
 
+
 public class SeRegistration {
 	
 	public static /* GEOT-947 final*/ int SE_REGISTRATION_ROW_ID_COLUMN_TYPE_SDE = 0;
@@ -8,7 +9,10 @@
     
 	public SeRegistration(SeConnection c, String s) throws SeException{}
 	
-	public String getRowIdColumnName() { return null; }
+	public SeRegistration(SeConnection conn) {
+    }
+
+    public String getRowIdColumnName() { return null; }
 	public void setRowIdColumnName(String s) {}
 	public int getRowIdColumnType() throws SeException { return -1;}
 	public void setRowIdColumnType(int i) {}
@@ -23,4 +27,6 @@
 
     public void getInfo() throws SeException{}
 
+    public void setTableName(String tableName) {}
+
 }
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Geotools-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to