comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/DefaultResult.java @ 885:1c3efbd2fc5a

Removes trailing whitespace. geo-backend/trunk@850 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 07:49:16 +0000
parents 12f88239fb33
children 8b442223741c
comparison
equal deleted inserted replaced
884:12f88239fb33 885:1c3efbd2fc5a
12 * Defaultimplementation of the Interface Result. 12 * Defaultimplementation of the Interface Result.
13 * This Class stores the Attributevalues of one Result. 13 * This Class stores the Attributevalues of one Result.
14 * @author Tim Englich <tim.englich@intevation.de> 14 * @author Tim Englich <tim.englich@intevation.de>
15 * 15 *
16 */ 16 */
17 public class DefaultResult 17 public class DefaultResult
18 implements Result 18 implements Result
19 { 19 {
20 /** 20 /**
21 * THE UID of this Classe 21 * THE UID of this Classe
22 */ 22 */
23 private static final long serialVersionUID = -6886218808840982766L; 23 private static final long serialVersionUID = -6886218808840982766L;
27 private Object [] values; 27 private Object [] values;
28 /** 28 /**
29 * The ResultDescriptor which describes the ColumnValues 29 * The ResultDescriptor which describes the ColumnValues
30 */ 30 */
31 private ResultDescriptor resultDescriptor = null; 31 private ResultDescriptor resultDescriptor = null;
32 32
33 /** 33 /**
34 * Constructor 34 * Constructor
35 */ 35 */
36 public DefaultResult(ResultDescriptor resultDescriptor) { 36 public DefaultResult(ResultDescriptor resultDescriptor) {
37 this.resultDescriptor = resultDescriptor; 37 this.resultDescriptor = resultDescriptor;
103 if (value instanceof Double){ 103 if (value instanceof Double){
104 value = new Integer(((Double)value).intValue()); 104 value = new Integer(((Double)value).intValue());
105 } 105 }
106 return (Integer)value; 106 return (Integer)value;
107 } 107 }
108 108
109 /** 109 /**
110 * @see de.intevation.gnv.geobackend.base.Result#getResultDescriptor() 110 * @see de.intevation.gnv.geobackend.base.Result#getResultDescriptor()
111 */ 111 */
112 public ResultDescriptor getResultDescriptor() { 112 public ResultDescriptor getResultDescriptor() {
113 return this.resultDescriptor; 113 return this.resultDescriptor;

http://dive4elements.wald.intevation.org