view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/ArtifactDescription.java @ 30:07e9c137a2f1

Added dynamic Outputparameter Support and Outputparameter-manipulation gnv/trunk@134 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 25 Sep 2009 14:24:08 +0000
parents 4ebe57b170d3
children ad381cc47217
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.artifactdatabase.objects;

import java.util.Collection;
import java.util.Map;

import org.w3c.dom.Node;

/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public interface ArtifactDescription {

    /**
     * @return the currentUI
     */
    public Node getCurrentUI();

    /**
      @param currentUI the currentUI to set
     */
    public void setCurrentUI(Node currentUI);

    /**
      @param currentOut the currentOut to set
     */
    public void setCurrentOut(Node currentOut);

    /**
     * @return the reachableStates
     */
    public Collection<String> getReachableStates();
    /**
      @param reachableStates the reachableStates to set
     */
    public void setReachableStates(Collection<String> reachableStates);

    /**
     * @return the currentState
     */
    public String getCurrentState();

    /**
      @param currentState the currentState to set
     */
    public void setCurrentState(String currentState);
    
    /**
     * @return the reachableStates
     */
    public Collection<String> getInputParameter();
    
    /**
     * @param inputParameter
     */
    public void setInputParameter(Collection<String> inputParameter);
    
    /**
     * @return the reachableStates
     */
    public Map<String, OutputMode> getOutputModes();
    
    /**
     * @return the reachableStates
     */
    public Collection<OutputMode> getOutputModesAsCollection();
    
    /**
     * @param outputParameter
     */
    public void setOutputModes(Map<String, OutputMode> outputModes);

}

http://dive4elements.wald.intevation.org