teichmann@5844: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5844: * Software engineering by Intevation GmbH teichmann@5844: * teichmann@5992: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5844: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5992: * documentation coming with Dive4Elements River for details. teichmann@5844: */ teichmann@5844: teichmann@5829: package org.dive4elements.river.importer; ingo@2838: teichmann@5829: import org.dive4elements.river.model.GrainFraction; ingo@2838: ingo@2838: ingo@2838: public class ImportGrainFraction { ingo@2838: tom@8032: private GrainFraction peer; ingo@2840: tom@8032: public ImportGrainFraction(GrainFraction gf) { tom@8032: this.peer = gf; ingo@2838: } ingo@2838: ingo@2838: ingo@2838: public void storeDependencies() { teichmann@8027: // Nothing to store because its prefilled in schema. ingo@2838: } ingo@2838: ingo@2838: ingo@2838: public GrainFraction getPeer() { tom@8032: return peer; ingo@2838: } ingo@2838: } ingo@2838: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :