comparison backend/src/main/java/org/dive4elements/river/importer/ImportBedHeight.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-backend/src/main/java/org/dive4elements/river/importer/ImportBedHeight.java@18619c1e7c2a
children 4dd33b86dc61
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.importer;
2
3
4 import java.sql.SQLException;
5
6 import org.hibernate.exception.ConstraintViolationException;
7
8 import org.dive4elements.river.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