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

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

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

import org.webswing.model.MsgIn;

public class PasteEventMsgIn implements MsgIn {

	private static final long serialVersionUID = -2857821597134135941L;
	private boolean special;
	private String text;
	private String html;
	private String img;

	public boolean isSpecial() {
		return special;
	}

	public void setSpecial(boolean special) {
		this.special = special;
	}

	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 String getImg() {
		return img;
	}

	public void setImg(String img) {
		this.img = img;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy