All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.model.c2s.PlaybackCommandMsgIn Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.model.c2s;

import org.webswing.model.MsgIn;

public class PlaybackCommandMsgIn implements MsgIn {
	private static final long serialVersionUID = -5390735227809092937L;

	public static enum PlaybackCommand {
		reset, play, stop, step, step10, step100;
	}

	private PlaybackCommand command;

	public PlaybackCommand getCommand() {
		return command;
	}

	public void setCommand(PlaybackCommand command) {
		this.command = command;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy