Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/WaterLineArtifact.java @ 4607:c0a275c581fb
Add a welcome screen to the workspace background
If the workspace background is visible a welcome message is shown and the user
is able to create a new project via a button.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 30 Nov 2012 10:18:32 +0100 |
parents | 6153c50f78cf |
children |
line wrap: on
line source
package de.intevation.flys.artifacts; import de.intevation.artifacts.CallContext; import de.intevation.flys.artifacts.geom.Lines; import de.intevation.flys.model.FastCrossSectionLine; /** * Interface, Artifact can create WaterLines (Water against Cross-Profile). */ public interface WaterLineArtifact { /** Get points that define a line of a (water)facet against a cross- * section. */ public Lines.LineData getWaterLines( int facetIdx, FastCrossSectionLine csl, double d, double w, CallContext context); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :