Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/transition/Transition.java @ 176:a0eff2227588
Added code to add artifacts to collections.
artifacts/trunk@1402 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Fri, 04 Mar 2011 17:51:15 +0000 |
parents | 26bfff409dd3 |
children | 8c2b6cdf22ad |
line wrap: on
line source
package de.intevation.artifactdatabase.transition; import de.intevation.artifactdatabase.state.State; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public interface Transition { /** * Return the ID of the start State. */ public String getFrom(); /** * Return the ID of the target State. */ public String getTo(); /** * Set the ID of the current State. * * @param from The ID of the current state. */ public void setFrom(String from); /** * Set the ID of the target State. * * @param to The ID of the target state. */ public void setTo(String to); /** * Determines if the transition from <code>state</code> is valid. */ public boolean isValid(State state); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :