view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/ArtifactDescription.java @ 684:57fa8019fbdc

Bring @author javadoc tags in form '@author <a href="john.doe@example.com">John Doe</a>' gnv/trunk@858 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:40:35 +0000
parents d49e8695786c
children 254f062e334b
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects;

import java.io.Serializable;

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

import org.w3c.dom.Node;

/**
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public interface ArtifactDescription extends Serializable {

    /**
     * @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