diff geo-backend/src/main/java/de/intevation/gnv/geobackend/base/Result.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 8aad9d098b08
children 8b442223741c
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/Result.java	Fri Mar 26 11:07:01 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/Result.java	Fri Mar 26 15:23:03 2010 +0000
@@ -14,14 +14,14 @@
  *
  */
 public interface Result extends Serializable{
-  
+
     /**
      * Returns the ResultDescriptor which provides the
      * ResultMetadatse
      * @return the ResultDescriptor
      */
     public ResultDescriptor getResultDescriptor();
-    
+
     /**
      * Returns the Columnvalue as a String
      * @param columnName the Name of the column
@@ -29,9 +29,13 @@
      */
     public String getString(String columnName);
 
+    /**
+     * Returns the Columnvalue as a String
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a String
+     */
+    public String getString(int column);
 
-    public String getString(int column);
-    
     /**
      * Returns the Columnvalue as a Date
      * @param columnName the Name of the column
@@ -39,8 +43,13 @@
      */
     public Date getDate(String columnName);
 
+    /**
+     * Returns the Columnvalue as a Date
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a Date
+     */
     public Date getDate(int column);
-    
+
     /**
      * Returns the Columnvalue as a Integer
      * @param columnName the Name of the column
@@ -48,6 +57,11 @@
      */
     public Integer getInteger(String columnName);
 
+    /**
+     * Returns the Columnvalue as a Integer
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a Integer
+     */
     public Integer getInteger(int column);
 
     /**
@@ -57,8 +71,13 @@
      */
     public Float getFloat(String columnName);
 
+    /**
+     * Returns the Columnvalue as a Float
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a Float
+     */
     public Float getFloat(int column);
-    
+
     /**
      * Returns the Columnvalue as a Double
      * @param columnName the Name of the column
@@ -66,8 +85,13 @@
      */
     public Double getDouble(String columnName);
 
+    /**
+     * Returns the Columnvalue as a Double
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a Double
+     */
     public Double getDouble(int column);
-    
+
     /**
      * Returns the Columnvalue as a Object
      * @param columnName the Name of the column
@@ -75,8 +99,13 @@
      */
     public Object getObject(String columnName);
 
+    /**
+     * Returns the Columnvalue as a Object
+     * @param column the Position of the Column that should be returned.
+     * @return the Columnvalue as a Object
+     */
     public Object getObject(int column);
-    
+
     /**
      * Adds an new Coumnvalue to the Result.
      * @param columnName the Name of the Column

http://dive4elements.wald.intevation.org