comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentLoadFraction.java @ 6376:8d6f23243d1d

SedimentLoad*: Switch from snake_case to camelCase.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 20 Jun 2013 11:42:47 +0200
parents be283f9bc079
children ec537afacac2
comparison
equal deleted inserted replaced
6375:2f39cf68a1dd 6376:8d6f23243d1d
14 /** One part of sedimentload. */ 14 /** One part of sedimentload. */
15 public class SedimentLoadFraction 15 public class SedimentLoadFraction
16 extends NamedObjectImpl 16 extends NamedObjectImpl
17 { 17 {
18 double sand; 18 double sand;
19 double fine_middle; 19 double fineMiddle;
20 double coarse; 20 double coarse;
21 double susp_sand; 21 double suspSand;
22 double susp_sand_bed; 22 double suspSandBed;
23 double susp_sediment; 23 double suspSediment;
24 double loadTotal; 24 double loadTotal;
25 double total; 25 double total;
26 /** Values are valid within this km range. */ 26 /** Values are valid within this km range. */
27 Range sandRange = null; 27 Range sandRange = null;
28 Range fineMiddleRange = null; 28 Range fineMiddleRange = null;
34 Range totalRange = null; 34 Range totalRange = null;
35 35
36 36
37 public SedimentLoadFraction() { 37 public SedimentLoadFraction() {
38 sand = 0d; 38 sand = 0d;
39 fine_middle = 0d; 39 fineMiddle = 0d;
40 coarse = 0d; 40 coarse = 0d;
41 susp_sand = 0d; 41 suspSand = 0d;
42 susp_sand_bed = 0d; 42 suspSandBed = 0d;
43 susp_sediment = 0d; 43 suspSediment = 0d;
44 loadTotal = 0d; 44 loadTotal = 0d;
45 } 45 }
46 46
47 public double getSand() { 47 public double getSand() {
48 return sand; 48 return sand;
58 58
59 public Range getSandRange() { 59 public Range getSandRange() {
60 return this.sandRange; 60 return this.sandRange;
61 } 61 }
62 62
63 public double getFine_middle() { 63 public double getFineMiddle() {
64 return fine_middle; 64 return fineMiddle;
65 } 65 }
66 66
67 public void setFine_middle(double fine_middle) { 67 public void setFineMiddle(double fineMiddle) {
68 this.fine_middle = fine_middle; 68 this.fineMiddle = fineMiddle;
69 } 69 }
70 70
71 public void setFineMiddleRange(Range range) { 71 public void setFineMiddleRange(Range range) {
72 this.fineMiddleRange = range; 72 this.fineMiddleRange = range;
73 } 73 }
90 90
91 public void setCoarseRange(Range range) { 91 public void setCoarseRange(Range range) {
92 this.coarseRange = range; 92 this.coarseRange = range;
93 } 93 }
94 94
95 public double getSusp_sand() { 95 public double getSuspSand() {
96 return susp_sand; 96 return suspSand;
97 } 97 }
98 98
99 public void setSusp_sand(double susp_sand) { 99 public void setSuspSand(double suspSand) {
100 this.susp_sand = susp_sand; 100 this.suspSand = suspSand;
101 } 101 }
102 102
103 public void setSuspSandRange(Range range) { 103 public void setSuspSandRange(Range range) {
104 this.suspSandRange = range; 104 this.suspSandRange = range;
105 } 105 }
106 106
107 public Range getSuspSandRange() { 107 public Range getSuspSandRange() {
108 return this.suspSandRange; 108 return this.suspSandRange;
109 } 109 }
110 110
111 public double getSusp_sand_bed() { 111 public double getSuspSandBed() {
112 return susp_sand_bed; 112 return suspSandBed;
113 } 113 }
114 114
115 public void setSusp_sand_bed(double susp_sand_bed) { 115 public void setSuspSandBed(double suspSandBed) {
116 this.susp_sand_bed = susp_sand_bed; 116 this.suspSandBed = suspSandBed;
117 } 117 }
118 118
119 public void setSuspSandBedRange(Range range) { 119 public void setSuspSandBedRange(Range range) {
120 this.suspSandRange = range; 120 this.suspSandRange = range;
121 } 121 }
122 122
123 public Range getSuspSandBedRange() { 123 public Range getSuspSandBedRange() {
124 return this.suspSandRange; 124 return this.suspSandRange;
125 } 125 }
126 126
127 public double getSusp_sediment() { 127 public double getSuspSediment() {
128 return susp_sediment; 128 return suspSediment;
129 } 129 }
130 130
131 public void setSusp_sediment(double susp_sediment) { 131 public void setSuspSediment(double suspSediment) {
132 this.susp_sediment = susp_sediment; 132 this.suspSediment = suspSediment;
133 } 133 }
134 134
135 public void setSuspSedimentRange(Range range) { 135 public void setSuspSedimentRange(Range range) {
136 this.suspSedimentRange = range; 136 this.suspSedimentRange = range;
137 } 137 }

http://dive4elements.wald.intevation.org