view flys-backend/src/main/java/de/intevation/flys/importer/ImportGauge.java @ 187:ecf90018563b

Importer: Bound Attributes and Positions to there backend peers. flys-backend/trunk@1507 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 17 Mar 2011 18:07:13 +0000
parents a60edcfe5f53
children bc3747a371cc
line wrap: on
line source
package de.intevation.flys.importer;

import java.io.File;

public class ImportGauge
{
    protected ImportRange range;

    protected File   staFile;
    protected File   atFile;

    public ImportGauge() {
    }

    public ImportGauge(ImportRange range, File staFile, File atFile) {
        this.range   = range;
        this.staFile = staFile;
        this.atFile  = atFile;
    }

    public void setRange(ImportRange range) {
        this.range = range;
    }

    public void setStaFile(File staFile) {
        this.staFile = staFile;
    }

    public File getStaFile() {
        return staFile;
    }

    public void setAtFile(File atFile) {
        this.atFile = atFile;
    }

    public File getAtFile() {
        return atFile;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org