diff geo-backend/src/main/java/de/intevation/gnv/geobackend/base/DefaultResultDescriptor.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 5b536542ef56
children 1c3efbd2fc5a
line wrap: on
line diff
--- a/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/DefaultResultDescriptor.java	Fri Mar 26 11:07:01 2010 +0000
+++ b/geo-backend/src/main/java/de/intevation/gnv/geobackend/base/DefaultResultDescriptor.java	Fri Mar 26 15:23:03 2010 +0000
@@ -20,19 +20,16 @@
      *The Uid of this Class
      */
     private static final long serialVersionUID = 7016889733270716130L;
-
     /**
      * The Names of the Columns of one Result
      */
     private List<String> columnNames = new ArrayList<String>();
-    
     /**
      * The Name of the Classes of the Values of one Result.
      */
     private List<String> columnClassNames = new ArrayList<String>();
-    
     /**
-     * 
+     * The Lookup for the Columnindex of the Columnnames
      */
     private Map<String, Integer> columnIndexLookup = new HashMap<String, Integer>();
     
@@ -80,13 +77,10 @@
         if (columnNames == null) {
             return null;
         }
-
         int [] indices = new int[columnNames.length];
-
         for (int i = 0; i < indices.length; ++i) {
             indices[i] = this.getColumnIndex(columnNames[i]);
         }
-
         return indices;
     }
 
@@ -99,6 +93,10 @@
         return value != null ? value.intValue() : -1;
     }
 
+    /**
+     * @see java.lang.Object#toString()
+     */
+    @Override
     public String toString() {
         StringBuilder sb = new StringBuilder("[");
         int N = Math.min(columnNames.size(), columnClassNames.size());

http://dive4elements.wald.intevation.org