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

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

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

import java.util.List;

import org.webswing.model.Msg;

public class CopyEventMsg implements Msg {

	private static final long serialVersionUID = -5791089710920190332L;
	private String text;
	private String html;
	private byte[] img;
	private List files;
	private boolean other;

	public CopyEventMsg() {
	}

	public CopyEventMsg(String text, String html, byte[] img, List files, boolean other) {
		super();
		this.text = text;
		this.html = html;
		this.img = img;
		this.files = files;
		this.other = other;
	}

	public String getText() {
		return text;
	}

	public void setText(String text) {
		this.text = text;
	}

	public String getHtml() {
		return html;
	}

	public void setHtml(String html) {
		this.html = html;
	}

	public byte[] getImg() {
		return img;
	}

	public void setImg(byte[] img) {
		this.img = img;
	}

	public List getFiles() {
		return files;
	}

	public void setFiles(List files) {
		this.files = files;
	}

	public boolean isOther() {
		return other;
	}

	public void setOther(boolean other) {
		this.other = other;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy