teichmann@5835: package org.dive4elements.river.client.client.event; ingo@60: ingo@60: import java.io.Serializable; ingo@60: ingo@60: ingo@60: /** ingo@60: * @author Ingo Weinzierl ingo@60: */ ingo@60: public class StepBackEvent implements Serializable { ingo@60: christian@4131: private static final long serialVersionUID = 7895180143662002198L; christian@4131: ingo@60: /** The identifier of the target state.*/ ingo@60: protected String target; ingo@60: ingo@60: ingo@60: /** ingo@60: * Creates a new StepBackEvent with the identifier of the target state. ingo@60: * ingo@60: * @param target The identifier of the target state. ingo@60: */ ingo@60: public StepBackEvent(String target) { ingo@60: this.target = target; ingo@60: } ingo@60: ingo@60: ingo@60: /** ingo@60: * A method to retrieve the target identifier. ingo@60: * ingo@60: * @return the target identifier. ingo@60: */ ingo@60: public String getTarget() { ingo@60: return target; ingo@60: } ingo@60: } ingo@60: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :