diff geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/SDEResultSet.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 0100ebf6630f
children 8b442223741c
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/SDEResultSet.java	Fri Mar 26 11:07:01 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/SDEResultSet.java	Fri Mar 26 15:23:03 2010 +0000
@@ -1,17 +1,5 @@
 /**
- * Title:           SDEResultSet, $Header: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/datasources/sde/SDEResultSet.java,v 1.2 2008/01/30 12:38:34 blume Exp $
- * Source:          $Source: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/datasources/sde/SDEResultSet.java,v $
- * created by:      Stefan Blume (blume)
- * erstellt am:     21.11.2007
- * Copyright:       con terra GmbH, 2005
  *
- * modified by:     $Author: blume $
- * modified on:     $Date: 2008/01/30 12:38:34 $
- * Version:         $Revision: 1.2 $
- * TAG:             $Name:  $
- * locked from:     $Locker:  $
- * CVS State:       $State: Exp $
- * Project:         $ProjectName$
  */
 package de.intevation.gnv.geobackend.sde.datasources;
 
@@ -44,11 +32,11 @@
 import de.intevation.gnv.geobackend.sde.datasources.exception.TechnicalException;
 
 /**
+ * SDEResultSet is an Implementation of the Interface @see java.sql.resultSet
+ * It is an Wrapper between the resultsets whcih are produced using the ArcSDE 
+ * and the Java-Interface for the Representation of ResultSets.
  * @author blume
- * @version 1.0
- * @serial 1.0
- * @see
- * @since 21.11.2007 11:01:27
+ * @author Tim Englich <tim.englich@intevation.de>
  */
 public class SDEResultSet extends ResultSet {
     
@@ -63,33 +51,56 @@
     private Row currentRow = null;
     private int cursor = 0;
     
+    /**
+     * Constructor
+     */
     public SDEResultSet() {
     }
     
+    /**
+     * @see de.intevation.gnv.geobackend.sde.datasources.ResultSet#getCount()
+     */
     public int getCount() {
-    	return mRows.size();
-    }
-    
-    public int getNumberOfColumns() {
-    	return mCols.size();
+        return mRows.size();
     }
     
-    public ColDefinition[] getColumnDefinitions() {
-    	ColDefinition[] lColDefinitions = new ColDefinition[mCols.size()];
-    	return mCols.toArray(lColDefinitions);
+    /**
+     * @see de.intevation.gnv.geobackend.sde.datasources.ResultSet#getNumberOfColumns()
+     */
+    public int getNumberOfColumns() {
+        return mCols.size();
     }
     
-    public Row[] getResults() {
-    	Row[] lRows = new Row[mRows.size()];
-    	return mRows.toArray(lRows);
+    /**
+     * @see de.intevation.gnv.geobackend.sde.datasources.ResultSet#getColumnDefinitions()
+     */
+    public ColDefinition[] getColumnDefinitions() {
+        ColDefinition[] lColDefinitions = new ColDefinition[mCols.size()];
+        return mCols.toArray(lColDefinitions);
     }
     
-    public void addRow(Row pRow) {
-    	mRows.add(pRow);
+    /**
+     * @see de.intevation.gnv.geobackend.sde.datasources.ResultSet#getResults()
+     */
+    public Row[] getResults() {
+        Row[] lRows = new Row[mRows.size()];
+        return mRows.toArray(lRows);
     }
     
+    /**
+     * Add an Row to the Resultset
+     * @param pRow The Row that should be added.
+     */
+    public void addRow(Row pRow) {
+        mRows.add(pRow);
+    }
+
+    /**
+     * Adds a Column to the Resultset.
+     * @param pColDefinition The Definition of the Column
+     */
     public void addCol(ColDefinition pColDefinition) {
-    	mCols.add(pColDefinition);
+        mCols.add(pColDefinition);
     }
     
     /**
@@ -97,7 +108,7 @@
      */
     public boolean absolute(int row) throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -141,7 +152,7 @@
      */
     public int findColumn(String columnName) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -149,7 +160,7 @@
      */
     public boolean first() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -157,7 +168,7 @@
      */
     public Array getArray(int i) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -165,7 +176,7 @@
      */
     public Array getArray(String colName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -173,7 +184,7 @@
      */
     public InputStream getAsciiStream(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -181,7 +192,7 @@
      */
     public InputStream getAsciiStream(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -189,7 +200,7 @@
      */
     public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -197,7 +208,7 @@
      */
     public BigDecimal getBigDecimal(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -206,7 +217,7 @@
     public BigDecimal getBigDecimal(int columnIndex, int scale)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -215,7 +226,7 @@
     public BigDecimal getBigDecimal(String columnName, int scale)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -223,7 +234,7 @@
      */
     public InputStream getBinaryStream(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -231,7 +242,7 @@
      */
     public InputStream getBinaryStream(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -239,7 +250,7 @@
      */
     public Blob getBlob(int i) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -247,7 +258,7 @@
      */
     public Blob getBlob(String colName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -255,7 +266,7 @@
      */
     public boolean getBoolean(int columnIndex) throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -263,7 +274,7 @@
      */
     public boolean getBoolean(String columnName) throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -271,7 +282,7 @@
      */
     public byte getByte(int columnIndex) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -279,7 +290,7 @@
      */
     public byte getByte(String columnName) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -287,7 +298,7 @@
      */
     public byte[] getBytes(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -295,7 +306,7 @@
      */
     public byte[] getBytes(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -303,7 +314,7 @@
      */
     public Reader getCharacterStream(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -311,7 +322,7 @@
      */
     public Reader getCharacterStream(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -319,7 +330,7 @@
      */
     public Clob getClob(int i) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -327,7 +338,7 @@
      */
     public Clob getClob(String colName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -335,7 +346,7 @@
      */
     public int getConcurrency() throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -343,14 +354,14 @@
      */
     public String getCursorName() throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
      * @see java.sql.ResultSet#getDate(int)
      */
     public Date getDate(int columnIndex) throws SQLException {
-    	try {
+        try {
             return new java.sql.Date(this.currentRow.getDateValue(columnIndex-1).getTime());
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -362,8 +373,8 @@
      * @see java.sql.ResultSet#getDate(java.lang.String)
      */
     public Date getDate(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getDate(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getDate(columnIndex);
     }
     
     /**
@@ -371,7 +382,7 @@
      */
     public Date getDate(int columnIndex, Calendar cal) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -379,14 +390,14 @@
      */
     public Date getDate(String columnName, Calendar cal) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
      * @see java.sql.ResultSet#getDouble(int)
      */
     public double getDouble(int columnIndex) throws SQLException {
-    	try {
+        try {
             return this.currentRow.getDoubleValue(columnIndex-1);
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -398,8 +409,8 @@
      * @see java.sql.ResultSet#getDouble(java.lang.String)
      */
     public double getDouble(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getDouble(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getDouble(columnIndex);
     }
     
     /**
@@ -407,7 +418,7 @@
      */
     public int getFetchDirection() throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -415,14 +426,14 @@
      */
     public int getFetchSize() throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
      * @see java.sql.ResultSet#getFloat(int)
      */
     public float getFloat(int columnIndex) throws SQLException {
-    	try {
+        try {
             return this.currentRow.getFloatValue(columnIndex-1);
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -434,8 +445,8 @@
      * @see java.sql.ResultSet#getFloat(java.lang.String)
      */
     public float getFloat(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getFloat(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getFloat(columnIndex);
     }
     
     /**
@@ -443,7 +454,7 @@
      */
     public int getInt(int columnIndex) throws SQLException {
     
-    	try {
+        try {
             return this.currentRow.getIntValue(columnIndex-1);
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -455,8 +466,8 @@
      * @see java.sql.ResultSet#getInt(java.lang.String)
      */
     public int getInt(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getInt(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getInt(columnIndex);
     }
     
     /**
@@ -464,7 +475,7 @@
      */
     public long getLong(int columnIndex) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -472,7 +483,7 @@
      */
     public long getLong(String columnName) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -487,7 +498,7 @@
      * @see java.sql.ResultSet#getObject(int)
      */
     public Object getObject(int columnIndex) throws SQLException {
-    	try {
+        try {
             return this.currentRow.getValue(columnIndex-1);
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -499,8 +510,8 @@
      * @see java.sql.ResultSet#getObject(java.lang.String)
      */
     public Object getObject(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getObject(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getObject(columnIndex);
     }
     
     /**
@@ -509,7 +520,7 @@
     public Object getObject(int i, Map<String, Class<?>> map)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -518,7 +529,7 @@
     public Object getObject(String colName, Map<String, Class<?>> map)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -526,7 +537,7 @@
      */
     public Ref getRef(int i) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -534,7 +545,7 @@
      */
     public Ref getRef(String colName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -542,7 +553,7 @@
      */
     public int getRow() throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -550,7 +561,7 @@
      */
     public short getShort(int columnIndex) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -558,7 +569,7 @@
      */
     public short getShort(String columnName) throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -566,7 +577,7 @@
      */
     public Statement getStatement() throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -574,7 +585,7 @@
      */
     public String getString(int columnIndex) throws SQLException {
     
-    	try {
+        try {
             return this.currentRow.getStringValue(columnIndex-1);
         } catch (TechnicalException e) {
             log.error(e,e);
@@ -586,8 +597,8 @@
      * @see java.sql.ResultSet#getString(java.lang.String)
      */
     public String getString(String columnName) throws SQLException {
-    	int columnIndex = this.getColumnIndex(columnName);
-    	return this.getString(columnIndex);
+        int columnIndex = this.getColumnIndex(columnName);
+        return this.getString(columnIndex);
     }
     
     /**
@@ -595,7 +606,7 @@
      */
     public Time getTime(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -603,7 +614,7 @@
      */
     public Time getTime(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -611,7 +622,7 @@
      */
     public Time getTime(int columnIndex, Calendar cal) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -619,7 +630,7 @@
      */
     public Time getTime(String columnName, Calendar cal) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -627,7 +638,7 @@
      */
     public Timestamp getTimestamp(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -635,7 +646,7 @@
      */
     public Timestamp getTimestamp(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -644,7 +655,7 @@
     public Timestamp getTimestamp(int columnIndex, Calendar cal)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -654,7 +665,7 @@
     public Timestamp getTimestamp(String columnName, Calendar cal)
             throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -662,7 +673,7 @@
      */
     public int getType() throws SQLException {
     
-    	return 0;
+        return 0;
     }
     
     /**
@@ -670,7 +681,7 @@
      */
     public URL getURL(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -678,7 +689,7 @@
      */
     public URL getURL(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -686,7 +697,7 @@
      */
     public InputStream getUnicodeStream(int columnIndex) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -694,7 +705,7 @@
      */
     public InputStream getUnicodeStream(String columnName) throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -702,7 +713,7 @@
      */
     public SQLWarning getWarnings() throws SQLException {
     
-    	return null;
+        return null;
     }
     
     /**
@@ -716,7 +727,7 @@
      */
     public boolean isAfterLast() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -724,7 +735,7 @@
      */
     public boolean isBeforeFirst() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -732,7 +743,7 @@
      */
     public boolean isFirst() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -740,7 +751,7 @@
      */
     public boolean isLast() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -748,7 +759,7 @@
      */
     public boolean last() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -767,16 +778,16 @@
      * @see java.sql.ResultSet#next()
      */
     public boolean next() throws SQLException {
-    	
-    	boolean next = this.mRows.size() > this.cursor;
-    	if (next){
-    		//log.debug("Zeile "+(cursor+1)+" von "+this.mRows.size()+" wird angesteuert.");
-    		this.currentRow = this.mRows.get(this.cursor);
-    		this.cursor++;
-    	}else{
-    		this.currentRow = null;
-    	}
-    	return next;
+        
+        boolean next = this.mRows.size() > this.cursor;
+        if (next){
+            //log.debug("Zeile "+(cursor+1)+" von "+this.mRows.size()+" wird angesteuert.");
+            this.currentRow = this.mRows.get(this.cursor);
+            this.cursor++;
+        }else{
+            this.currentRow = null;
+        }
+        return next;
     }
     
     /**
@@ -784,7 +795,7 @@
      */
     public boolean previous() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -798,7 +809,7 @@
      */
     public boolean relative(int rows) throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -806,7 +817,7 @@
      */
     public boolean rowDeleted() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -814,7 +825,7 @@
      */
     public boolean rowInserted() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -822,7 +833,7 @@
      */
     public boolean rowUpdated() throws SQLException {
     
-    	return false;
+        return false;
     }
     
     /**
@@ -1144,174 +1155,297 @@
     
             return false;
     }
-    
-    
+
+    /**
+     * TODO: DOCUMENT ME
+     * @param columnName
+     * @return
+     * @throws SQLException
+     */
     private int getColumnIndex(String columnName) throws SQLException{
-    for (int i = 0 ; i < this.mCols.size();i++){
-        if(this.mCols.get(i).getName().equalsIgnoreCase(columnName)){
-            return i +1; // PLUS 1 da SQL-Cursor 1 basiert sind
+        for (int i = 0 ; i < this.mCols.size();i++){
+            if(this.mCols.get(i).getName().equalsIgnoreCase(columnName)){
+                return i +1; // PLUS 1 da SQL-Cursor 1 basiert sind
+            }
         }
-    }
-    throw new SQLException("Column "+columnName+" does not exist in ResulSet");
+        throw new SQLException("Column "+columnName+" does not exist in ResulSet");
     }
 
+    /**
+     * @see java.sql.ResultSet#getHoldability()
+     */
     public int getHoldability() throws SQLException {
         return 0;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNCharacterStream(int)
+     */
     public Reader getNCharacterStream(int arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNCharacterStream(java.lang.String)
+     */
     public Reader getNCharacterStream(String arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNClob(int)
+     */
     public NClob getNClob(int arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNClob(java.lang.String)
+     */
     public NClob getNClob(String arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNString(int)
+     */
     public String getNString(int arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getNString(java.lang.String)
+     */
     public String getNString(String arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getRowId(int)
+     */
     public RowId getRowId(int arg0) throws SQLException {
-        
-        return null;
-    }
-
-    public RowId getRowId(String arg0) throws SQLException {
-        
         return null;
     }
 
-    public SQLXML getSQLXML(int arg0) throws SQLException {
-        
+    /**
+     * @see java.sql.ResultSet#getRowId(java.lang.String)
+     */
+    public RowId getRowId(String arg0) throws SQLException {
         return null;
     }
 
-    public SQLXML getSQLXML(String arg0) throws SQLException {
-        
+    /**
+     * @see java.sql.ResultSet#getSQLXML(int)
+     */
+    public SQLXML getSQLXML(int arg0) throws SQLException {
         return null;
     }
 
+    /**
+     * @see java.sql.ResultSet#getSQLXML(java.lang.String)
+     */
+    public SQLXML getSQLXML(String arg0) throws SQLException {
+        return null;
+    }
+
+    /**
+     * @see java.sql.ResultSet#isClosed()
+     */
     public boolean isClosed() throws SQLException {
-        
         return false;
     }
 
+    /**
+     * @see java.sql.ResultSet#updateAsciiStream(int, java.io.InputStream)
+     */
     public void updateAsciiStream(int arg0, InputStream arg1)
                                                              throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateAsciiStream(java.lang.String, java.io.InputStream)
+     */
     public void updateAsciiStream(String arg0, InputStream arg1)
                                                                 throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateAsciiStream(int, java.io.InputStream, long)
+     */
     public void updateAsciiStream(int arg0, InputStream arg1, long arg2)
                                                                         throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateAsciiStream(java.lang.String, java.io.InputStream, long)
+     */
     public void updateAsciiStream(String arg0, InputStream arg1, long arg2)
                                                                            throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBinaryStream(int, java.io.InputStream)
+     */
     public void updateBinaryStream(int arg0, InputStream arg1)
                                                               throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBinaryStream(java.lang.String, java.io.InputStream)
+     */
     public void updateBinaryStream(String arg0, InputStream arg1)
                                                                  throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBinaryStream(int, java.io.InputStream, long)
+     */
     public void updateBinaryStream(int arg0, InputStream arg1, long arg2)
                                                                          throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBinaryStream(java.lang.String, java.io.InputStream, long)
+     */
     public void updateBinaryStream(String arg0, InputStream arg1, long arg2)
                                                                             throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBlob(int, java.io.InputStream)
+     */
     public void updateBlob(int arg0, InputStream arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBlob(java.lang.String, java.io.InputStream)
+     */
     public void updateBlob(String arg0, InputStream arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBlob(int, java.io.InputStream, long)
+     */
     public void updateBlob(int arg0, InputStream arg1, long arg2)
                                                                  throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateBlob(java.lang.String, java.io.InputStream, long)
+     */
     public void updateBlob(String arg0, InputStream arg1, long arg2)
                                                                     throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateCharacterStream(int, java.io.Reader)
+     */
     public void updateCharacterStream(int arg0, Reader arg1)
                                                             throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateCharacterStream(java.lang.String, java.io.Reader)
+     */
     public void updateCharacterStream(String arg0, Reader arg1)
                                                                throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateCharacterStream(int, java.io.Reader, long)
+     */
     public void updateCharacterStream(int arg0, Reader arg1, long arg2)
                                                                        throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateCharacterStream(java.lang.String, java.io.Reader, long)
+     */
     public void updateCharacterStream(String arg0, Reader arg1, long arg2)
                                                                           throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateClob(int, java.io.Reader)
+     */
     public void updateClob(int arg0, Reader arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateClob(java.lang.String, java.io.Reader)
+     */
     public void updateClob(String arg0, Reader arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateClob(int, java.io.Reader, long)
+     */
     public void updateClob(int arg0, Reader arg1, long arg2)
                                                             throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateClob(java.lang.String, java.io.Reader, long)
+     */
     public void updateClob(String arg0, Reader arg1, long arg2)
                                                                throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNCharacterStream(int, java.io.Reader)
+     */
     public void updateNCharacterStream(int arg0, Reader arg1)
                                                              throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNCharacterStream(java.lang.String, java.io.Reader)
+     */
     public void updateNCharacterStream(String arg0, Reader arg1)
                                                                 throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNCharacterStream(int, java.io.Reader, long)
+     */
     public void updateNCharacterStream(int arg0, Reader arg1, long arg2)
                                                                         throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNCharacterStream(java.lang.String, java.io.Reader, long)
+     */
     public void updateNCharacterStream(String arg0, Reader arg1, long arg2)
                                                                            throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNClob(int, java.sql.NClob)
+     */
     public void updateNClob(int arg0, NClob arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNClob(java.lang.String, java.sql.NClob)
+     */
     public void updateNClob(String arg0, NClob arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNClob(int, java.io.Reader)
+     */
     public void updateNClob(int arg0, Reader arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNClob(java.lang.String, java.io.Reader)
+     */
     public void updateNClob(String arg0, Reader arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNClob(int, java.io.Reader, long)
+     */
     public void updateNClob(int arg0, Reader arg1, long arg2)
                                                              throws SQLException {
     }
@@ -1320,31 +1454,53 @@
                                                                 throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNString(int, java.lang.String)
+     */
     public void updateNString(int arg0, String arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateNString(java.lang.String, java.lang.String)
+     */
     public void updateNString(String arg0, String arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateRowId(int, java.sql.RowId)
+     */
     public void updateRowId(int arg0, RowId arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateRowId(java.lang.String, java.sql.RowId)
+     */
     public void updateRowId(String arg0, RowId arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateSQLXML(int, java.sql.SQLXML)
+     */
     public void updateSQLXML(int arg0, SQLXML arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.ResultSet#updateSQLXML(java.lang.String, java.sql.SQLXML)
+     */
     public void updateSQLXML(String arg0, SQLXML arg1) throws SQLException {
     }
 
+    /**
+     * @see java.sql.Wrapper#isWrapperFor(java.lang.Class)
+     */
     public boolean isWrapperFor(Class<?> arg0) throws SQLException {
-        
         return false;
     }
 
+    /**
+     * @see java.sql.Wrapper#unwrap(java.lang.Class)
+     */
     public <T> T unwrap(Class<T> arg0) throws SQLException {
-        
         return null;
     }
 

http://dive4elements.wald.intevation.org