teichmann@6339: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@6339: * Software engineering by Intevation GmbH teichmann@6339: * teichmann@6339: * This file is Free Software under the GNU AGPL (>=v3) teichmann@6339: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@6339: * documentation coming with Dive4Elements River for details. teichmann@6339: */ teichmann@6339: teichmann@6339: package org.dive4elements.river.importer; teichmann@6339: teichmann@6339: public class ImportOfficialWstColumn teichmann@6339: extends ImportWstColumn teichmann@6339: { teichmann@6339: public static final ImportWst.ImportWstColumnFactory COLUMN_FACTORY = teichmann@6339: new ImportWst.ImportWstColumnFactory() { teichmann@6339: @Override teichmann@6339: public ImportWstColumn create(ImportWst importWst, int position) { tom@8856: return new ImportOfficialWstColumn( tom@8856: importWst, null, null, position); teichmann@6339: } teichmann@6339: }; teichmann@6339: teichmann@6345: protected ImportOfficialLine officialLine; teichmann@6345: teichmann@6339: public ImportOfficialWstColumn() { teichmann@6339: super(); teichmann@6339: } teichmann@6339: teichmann@6339: public ImportOfficialWstColumn( teichmann@6339: ImportWst wst, teichmann@6339: String name, teichmann@6339: String description, teichmann@6339: Integer position teichmann@6339: ) { teichmann@6339: super(wst, name, description, position); teichmann@6339: } teichmann@6345: teichmann@6345: public ImportOfficialLine getOfficialLine() { teichmann@6345: return officialLine; teichmann@6345: } teichmann@6345: teichmann@6345: public void setOfficialLine(ImportOfficialLine officialLine) { teichmann@6345: this.officialLine = officialLine; teichmann@6345: } teichmann@6339: } teichmann@6339: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :