Mercurial > dive4elements > gnv-client
comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/Result.java @ 889:e5e30090c37c
Modified some JavaDoc so that the Warnings that where caused by mistakes are removed.
geo-backend/trunk@915 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 13 Apr 2010 09:30:10 +0000 |
parents | b757def3ff55 |
children | e9ca6be4dbd2 |
comparison
equal
deleted
inserted
replaced
888:65dd801fbee6 | 889:e5e30090c37c |
---|---|
1 package de.intevation.gnv.geobackend.base; | 1 package de.intevation.gnv.geobackend.base; |
2 | 2 |
3 import java.io.Serializable; | 3 import java.io.Serializable; |
4 | |
5 import java.util.Date; | 4 import java.util.Date; |
6 | 5 |
7 /** | 6 /** |
8 * Interface which provides the Methods for Accessing | 7 * Interface which provides the Methods for Accessing |
9 * the Data of an ResultEntry | 8 * the Data of an ResultEntry |
102 * @return the Columnvalue as a Object | 101 * @return the Columnvalue as a Object |
103 */ | 102 */ |
104 public Object getObject(int column); | 103 public Object getObject(int column); |
105 | 104 |
106 /** | 105 /** |
107 * Adds an new Coumnvalue to the Result. | 106 * Adds an new Columnvalue to the Result. |
108 * @param columnName the Name of the Column | 107 * @param columnthe Position where the column should be inserted. |
109 * @param value the Value of the Column | 108 * @param value the Value of the Column |
110 */ | 109 */ |
111 public void addColumnValue(int column, Object value); | 110 public void addColumnValue(int column, Object value); |
112 } | 111 } |