![JAR search and dependency download from the Maven repository](/logo.png)
org.ggp.base.apps.kiosk.MoveSelectedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The newest version!
package org.ggp.base.apps.kiosk;
import org.ggp.base.util.observer.Event;
import org.ggp.base.util.statemachine.Move;
public class MoveSelectedEvent extends Event {
private Move theMove;
private boolean isFinal = false;
public MoveSelectedEvent(Move m) {
theMove = m;
}
public MoveSelectedEvent(Move m, boolean isFinal) {
theMove = m;
this.isFinal = isFinal;
}
public Move getMove() {
return theMove;
}
public boolean isFinal() {
return isFinal;
}
@Override
public String toString() {
return "Move selected event: " + theMove;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy