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

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

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

import org.webswing.model.MsgOut;
import org.webswing.model.SyncMsg;

public class PixelsAreaRequestMsgOut implements MsgOut, SyncMsg {

	private String correlationId;
	private int x;
	private int y;
	private int w;
	private int h;

	public String getCorrelationId() {
		return correlationId;
	}

	public void setCorrelationId(String correlationId) {
		this.correlationId = correlationId;
	}

	public int getX() {
		return x;
	}

	public void setX(int x) {
		this.x = x;
	}

	public int getY() {
		return y;
	}

	public void setY(int y) {
		this.y = y;
	}

	public int getW() {
		return w;
	}

	public void setW(int w) {
		this.w = w;
	}

	public int getH() {
		return h;
	}

	public void setH(int h) {
		this.h = h;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy