comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FixationArtifactAccess.java @ 3209:03fc05655258

SQ: Added artifact access stub. flys-artifacts/trunk@4828 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 28 Jun 2012 15:06:58 +0000
parents 90c4ce100ce1
children ae14f412ba10
comparison
equal deleted inserted replaced
3208:90c4ce100ce1 3209:03fc05655258
138 138
139 if (qSectorStart == null) { 139 if (qSectorStart == null) {
140 qSectorStart = getInteger("q1"); 140 qSectorStart = getInteger("q1");
141 } 141 }
142 142
143 if (log.isDebugEnabled()) {
144 log.debug("q1: '" + qSectorStart + "'");
145 }
146
143 return qSectorStart; 147 return qSectorStart;
144 } 148 }
145 149
146 public Integer getQSectorEnd() { 150 public Integer getQSectorEnd() {
147 151
148 if (qSectorEnd == null) { 152 if (qSectorEnd == null) {
149 qSectorEnd = getInteger("q2"); 153 qSectorEnd = getInteger("q2");
154 }
155
156 if (log.isDebugEnabled()) {
157 log.debug("q2: '" + qSectorEnd + "'");
150 } 158 }
151 159
152 return qSectorEnd; 160 return qSectorEnd;
153 } 161 }
154 162
155 public int [] getEvents() { 163 public int [] getEvents() {
156 if (events == null) { 164 if (events == null) {
157 events = getIntArray("events"); 165 events = getIntArray("events");
166 }
167 if (log.isDebugEnabled() && events != null) {
168 log.debug("events: " + Arrays.toString(events));
158 } 169 }
159 return events; 170 return events;
160 } 171 }
161 172
162 public DateRange getReferencePeriod() { 173 public DateRange getReferencePeriod() {
197 208
198 public Boolean getPreprocessing() { 209 public Boolean getPreprocessing() {
199 if (preprocessing == null) { 210 if (preprocessing == null) {
200 preprocessing = getBoolean("preprocessing"); 211 preprocessing = getBoolean("preprocessing");
201 } 212 }
213 if (log.isDebugEnabled()) {
214 log.debug("preprocessing: " + preprocessing);
215 }
202 return preprocessing; 216 return preprocessing;
203 } 217 }
204 218
205 public String getFunction() { 219 public String getFunction() {
206 if (function == null) { 220 if (function == null) {

http://dive4elements.wald.intevation.org