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

org.webswing.model.s2c.PasteRequestMsg 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 PasteRequestMsg implements MsgOut {
	private String title;
	private String message;

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy