comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/ResultDescriptor.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 1c3efbd2fc5a
comparison
equal deleted inserted replaced
883:6d568397740c 884:12f88239fb33
16 * Returns the Classname of the Column 16 * Returns the Classname of the Column
17 * @param column the id of the Column which is requested 17 * @param column the id of the Column which is requested
18 * @return the Classname of the Column 18 * @return the Classname of the Column
19 */ 19 */
20 public String getColumnClassName(int column); 20 public String getColumnClassName(int column);
21 21
22 /** 22 /**
23 * Returns the Number of Columns 23 * Returns the Number of Columns
24 * @return the Number of Columns 24 * @return the Number of Columns
25 */ 25 */
26 public int getColumnCount(); 26 public int getColumnCount();
27 27
28 /** 28 /**
29 * Returns the Name of the Column which belongs to the given Columnindex 29 * Returns the Name of the Column which belongs to the given Columnindex
30 * @param column the Index of the Column 30 * @param column the Index of the Column
31 * @return the Name of the Column 31 * @return the Name of the Column
32 */ 32 */
33 public String getColumnName(int column); 33 public String getColumnName(int column);
34 34
35 /** 35 /**
36 * Adds a new ColumnDescription into the Descriptor 36 * Adds a new ColumnDescription into the Descriptor
37 * @param name the Name of the Column (unique) 37 * @param name the Name of the Column (unique)
38 * @param className the Name of the Class (e.g. Double, Integer 38 * @param className the Name of the Class (e.g. Double, Integer
39 */ 39 */
40 public void addColumn(String name, String className); 40 public void addColumn(String name, String className);
41 41
42 /**
43 * Returns the Indices of the Columns which are specified in the
44 * param columnNames.
45 * @param columnNames the Name of the Columns for which the Indices should returned.
46 * @return the Indices of the Columns which are specified in the
47 * param columnNames.
48 */
42 public int [] getColumnIndices(String [] columnNames); 49 public int [] getColumnIndices(String [] columnNames);
43 50
51 /**
52 * Returns the index of the given columnName
53 * @param columnName the Name of the Index which should be looked up.
54 * @return the index of the given columnName
55 */
44 public int getColumnIndex(String columnName); 56 public int getColumnIndex(String columnName);
45 } 57 }

http://dive4elements.wald.intevation.org