Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CrossSectionWaterLineFacet.java @ 3649:33bfc01410fb
Merged revisions 5375,5379,5382 via svnmerge from
file:///home/clients/bsh/bsh-generischer-viewer/Material/SVN/flys-artifacts/trunk
........
r5375 | ingo | 2012-09-07 11:26:45 +0200 (Fr, 07 Sep 2012) | 1 line
Tagged 'flys-artifacts' as 2.9
........
r5379 | rrenkert | 2012-09-07 13:58:41 +0200 (Fr, 07 Sep 2012) | 4 lines
Issue 791.
Add start km to data to compare reference and target km in next state.
........
r5382 | rrenkert | 2012-09-07 14:03:48 +0200 (Fr, 07 Sep 2012) | 3 lines
Set data for characteristic diameter for use in parameter matrix UI.
........
flys-artifacts/tags/2.9@5388 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 07 Sep 2012 13:12:08 +0000 |
parents | 31168ac9c7e7 |
children | 6153c50f78cf |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import org.apache.log4j.Logger; import java.util.List; import de.intevation.artifacts.Artifact; import de.intevation.artifacts.CallContext; import de.intevation.artifacts.DataProvider; import de.intevation.artifactdatabase.state.Facet; import de.intevation.flys.artifacts.WaterLineArtifact; import de.intevation.flys.model.FastCrossSectionLine; import de.intevation.flys.artifacts.geom.Lines; /** * Facet for Waterlines in Cross Sections. */ public class CrossSectionWaterLineFacet extends BlackboardDataFacet implements FacetTypes { /** Private logger to use. */ private static Logger logger = Logger.getLogger(CrossSectionWaterLineFacet.class); /** Trivial constructor, set (maybe localized) description. */ public CrossSectionWaterLineFacet(int idx, String description) { super(idx, CROSS_SECTION_WATER_LINE, description); } /** * Trivial constructor, set (maybe localized) description. * @param idx Index of this facet. * @param name 'type' of this facet. * @param description (maybe) localized user-visible description. */ public CrossSectionWaterLineFacet(int idx, String name, String description) { super(idx, name, description); } /** * Gets waterline (crossed with cross section) of waterlevel. */ public Object getData(Artifact artifact, CallContext context) { logger.debug("Get data for cross section water line"); List<DataProvider> providers = context. getDataProvider(CrossSectionFacet.BLACKBOARD_CS_MASTER_DATA); if (providers.size() < 1) { logger.warn("Could not find Cross-Section data provider."); return new Lines.LineData(new double[][] {}, 0d, 0d); } Object crossSection = providers.get(0) .provideData(CrossSectionFacet.BLACKBOARD_CS_MASTER_DATA, null, context); Object nextKm = providers.get(0). provideData(CrossSectionFacet.BLACKBOARD_CS_NEXT_KM, null, context); Object prevKm = providers.get(0). provideData(CrossSectionFacet.BLACKBOARD_CS_PREV_KM, null, context); if (prevKm == null) prevKm = new Double(-1d); if (nextKm == null) nextKm = new Double(-1d); WaterLineArtifact lineArtifact = (WaterLineArtifact) artifact; if (crossSection != null) { return lineArtifact.getWaterLines(this.getIndex(), (FastCrossSectionLine) crossSection, (Double) nextKm, (Double) prevKm); } else { return new Lines.LineData(new double[][] {}, 0d,0d); } } /** Do a deep copy. */ @Override public Facet deepCopy() { CrossSectionWaterLineFacet copy = new CrossSectionWaterLineFacet( this.getIndex(), this.description); copy.set(this); return copy; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :