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

org.webswing.model.s2c.PlaybackInfoMsg Maven / Gradle / Ivy

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

import org.webswing.model.MsgOut;

public class PlaybackInfoMsg implements MsgOut {
	private static final long serialVersionUID = -2332725867134258277L;
	private int current;
	private int total;

	public int getCurrent() {
		return current;
	}

	public void setCurrent(int current) {
		this.current = current;
	}

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy