comparison backend/src/main/java/org/dive4elements/river/importer/ImportOfficialWstColumn.java @ 7730:e1b831fe435a slt-simplify-cross-sections

Merged default into slt-simplify-cross-sections branch and updated package and class names.
author Tom Gottfried <tom@intevation.de>
date Mon, 20 Jan 2014 14:04:20 +0100
parents 0f7e9a4f1c5a
children 5e38e2924c07
comparison
equal deleted inserted replaced
5084:ca45dd039b54 7730:e1b831fe435a
1 /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU AGPL (>=v3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out the
6 * documentation coming with Dive4Elements River for details.
7 */
8
9 package org.dive4elements.river.importer;
10
11 public class ImportOfficialWstColumn
12 extends ImportWstColumn
13 {
14 public static final ImportWst.ImportWstColumnFactory COLUMN_FACTORY =
15 new ImportWst.ImportWstColumnFactory() {
16 @Override
17 public ImportWstColumn create(ImportWst importWst, int position) {
18 return new ImportOfficialWstColumn(importWst, null, null, position);
19 }
20 };
21
22 protected ImportOfficialLine officialLine;
23
24 public ImportOfficialWstColumn() {
25 super();
26 }
27
28 public ImportOfficialWstColumn(
29 ImportWst wst,
30 String name,
31 String description,
32 Integer position
33 ) {
34 super(wst, name, description, position);
35 }
36
37 public ImportOfficialLine getOfficialLine() {
38 return officialLine;
39 }
40
41 public void setOfficialLine(ImportOfficialLine officialLine) {
42 this.officialLine = officialLine;
43 }
44 }
45 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org