Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/transition/OutputTransition.java @ 66:bf883222b675
Added JfreeChart Dependency to pom-file
gnv-artifacts/trunk@49 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 09 Sep 2009 12:03:00 +0000 |
parents | 5db77e0a8594 |
children | d117fd4b82e5 |
line wrap: on
line source
/** * */ package de.intevation.gnv.transition; import java.util.Collection; /** * @author Tim Englich <tim.englich@intevation.de> * */ public interface OutputTransition extends Transition { /** * Returns the Rendered Result of an Transition. * @param outputMode The Mode that should be produces (Chart, Map, ...) * @return The Bytecode of the Result */ public byte[] out( String outputMode); /** * Delivers the provided OutputModes of an Transition * @return the provided OutputModes of an Transition */ public Collection<OutputMode> getOutputModes(); }