comparison flys-backend/src/main/java/de/intevation/flys/importer/ImportBedHeight.java @ 2811:8926571e47fb

Finished importing MINFO bed heights (single and epoch). flys-backend/trunk@4225 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 13 Apr 2012 07:24:55 +0000
parents
children
comparison
equal deleted inserted replaced
2810:04eeb45df27b 2811:8926571e47fb
1 package de.intevation.flys.importer;
2
3
4 import java.sql.SQLException;
5
6 import org.hibernate.exception.ConstraintViolationException;
7
8 import de.intevation.flys.model.River;
9
10
11 public interface ImportBedHeight {
12
13 String getDescription();
14
15 void addValue(ImportBedHeightValue value);
16
17 void storeDependencies(River river)
18 throws SQLException, ConstraintViolationException;
19
20 Object getPeer(River river);
21
22 int getValueCount();
23
24 void setYear(int year);
25
26 void setTimeInterval(ImportTimeInterval timeInterval);
27
28 void setSoundingWidth(int soundingWidth);
29
30 void setDescription(String description);
31
32 void setEvaluationBy(String evaluationBy);
33
34 void setRange(ImportRange range);
35
36 void setType(ImportBedHeightType type);
37
38 void setLocationSystem(ImportLocationSystem locationSystem);
39
40 void setCurElevationModel(ImportElevationModel model);
41
42 void setOldElevationModel(ImportElevationModel model);
43 }
44 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org