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

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

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

import org.webswing.model.MsgIn;
import org.webswing.model.SyncMsg;

public class PixelsAreaResponseMsgIn implements MsgIn, SyncMsg {
	private String correlationId;
	private String pixels;

	public String getCorrelationId() {
		return correlationId;
	}

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

	public String getPixels() {
		return pixels;
	}

	public void setPixels(String pixels) {
		this.pixels = pixels;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy