diff geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ArcSDEResultSetMetaData.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 485566786089
children 1c3efbd2fc5a
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ArcSDEResultSetMetaData.java	Fri Mar 26 11:07:01 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ArcSDEResultSetMetaData.java	Fri Mar 26 15:23:03 2010 +0000
@@ -8,12 +8,18 @@
 import java.util.List;
 
 /**
+ * This Class is an Wrapperclass for the ResultSetMetaData and the
+ * ColumnDefinitions which are retrieved from the ArcSDE-Backend.
  * @author Tim Englich <tim.englich@intevation.de>
  *
  */
 public class ArcSDEResultSetMetaData implements ResultSetMetaData {
 
+    /**
+     * The Columndefinitions which are required to explain the retrieved Data.
+     */
     private List<ColDefinition> columnDefinitions = null;
+    
     /**
      * Constructor
      */
@@ -25,7 +31,6 @@
      * @see java.sql.ResultSetMetaData#getCatalogName(int)
      */
     public String getCatalogName(int column) throws SQLException {
-
         return null;
     }
 
@@ -33,7 +38,6 @@
      * @see java.sql.ResultSetMetaData#getColumnClassName(int)
      */
     public String getColumnClassName(int column) throws SQLException {
-        
         int type = this.getColumnType(column);
         if (type == ColDefinition.INT16){
             return "Integer";
@@ -67,7 +71,6 @@
      * @see java.sql.ResultSetMetaData#getColumnDisplaySize(int)
      */
     public int getColumnDisplaySize(int column) throws SQLException {
-
         return 0;
     }
 
@@ -96,7 +99,6 @@
      * @see java.sql.ResultSetMetaData#getColumnTypeName(int)
      */
     public String getColumnTypeName(int column) throws SQLException {
-
         return null;
     }
 
@@ -104,7 +106,6 @@
      * @see java.sql.ResultSetMetaData#getPrecision(int)
      */
     public int getPrecision(int column) throws SQLException {
-
         return 0;
     }
 
@@ -112,7 +113,6 @@
      * @see java.sql.ResultSetMetaData#getScale(int)
      */
     public int getScale(int column) throws SQLException {
-
         return 0;
     }
 
@@ -120,7 +120,6 @@
      * @see java.sql.ResultSetMetaData#getSchemaName(int)
      */
     public String getSchemaName(int column) throws SQLException {
-
         return null;
     }
 
@@ -128,7 +127,6 @@
      * @see java.sql.ResultSetMetaData#getTableName(int)
      */
     public String getTableName(int column) throws SQLException {
-
         return null;
     }
 
@@ -136,7 +134,6 @@
      * @see java.sql.ResultSetMetaData#isAutoIncrement(int)
      */
     public boolean isAutoIncrement(int column) throws SQLException {
-
         return false;
     }
 
@@ -144,7 +141,6 @@
      * @see java.sql.ResultSetMetaData#isCaseSensitive(int)
      */
     public boolean isCaseSensitive(int column) throws SQLException {
-
         return false;
     }
 
@@ -152,7 +148,6 @@
      * @see java.sql.ResultSetMetaData#isCurrency(int)
      */
     public boolean isCurrency(int column) throws SQLException {
-
         return false;
     }
 
@@ -160,7 +155,6 @@
      * @see java.sql.ResultSetMetaData#isDefinitelyWritable(int)
      */
     public boolean isDefinitelyWritable(int column) throws SQLException {
-
         return false;
     }
 
@@ -168,7 +162,6 @@
      * @see java.sql.ResultSetMetaData#isNullable(int)
      */
     public int isNullable(int column) throws SQLException {
-
         return 0;
     }
 
@@ -176,7 +169,6 @@
      * @see java.sql.ResultSetMetaData#isReadOnly(int)
      */
     public boolean isReadOnly(int column) throws SQLException {
-
         return true;
     }
 
@@ -184,7 +176,6 @@
      * @see java.sql.ResultSetMetaData#isSearchable(int)
      */
     public boolean isSearchable(int column) throws SQLException {
-
         return true;
     }
 
@@ -202,10 +193,16 @@
         return false;
     }
 
+    /**
+     * @see java.sql.Wrapper#isWrapperFor(java.lang.Class)
+     */
     public boolean isWrapperFor(Class<?> iface) throws SQLException {
         return false;
     }
 
+    /**
+     * @see java.sql.Wrapper#unwrap(java.lang.Class)
+     */
     public <T> T unwrap(Class<T> iface) throws SQLException {
         return null;
     }

http://dive4elements.wald.intevation.org