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

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

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

import java.util.List;

import org.webswing.model.MsgIn;
import org.webswing.model.jslink.JavaEvalRequestMsgIn;
import org.webswing.model.jslink.JsResultMsg;

public class InputEventsFrameMsgIn implements MsgIn {

	private static final long serialVersionUID = -7046154705244466351L;
	private List events;
	private CopyEventMsgIn copy;
	private PasteEventMsgIn paste;
	private FilesSelectedEventMsgIn selected;
	private PlaybackCommandMsgIn playback;
	private WindowEventMsgIn window;
	private AudioEventMsgIn audio;
	private ActionEventMsgIn action;
	
	private JsResultMsg jsResponse;// java2js call return value
	private JavaEvalRequestMsgIn javaRequest;// js2java call
	private PixelsAreaResponseMsgIn pixelsResponse; //WebRobotPeer

	public List getEvents() {
		return events;
	}

	public void setEvents(List events) {
		this.events = events;
	}

	public CopyEventMsgIn getCopy() {
		return copy;
	}

	public void setCopy(CopyEventMsgIn copy) {
		this.copy = copy;
	}

	public PasteEventMsgIn getPaste() {
		return paste;
	}

	public void setPaste(PasteEventMsgIn paste) {
		this.paste = paste;
	}

	public FilesSelectedEventMsgIn getSelected() {
		return selected;
	}

	public void setSelected(FilesSelectedEventMsgIn selected) {
		this.selected = selected;
	}

	public JsResultMsg getJsResponse() {
		return jsResponse;
	}

	public void setJsResponse(JsResultMsg jsResponse) {
		this.jsResponse = jsResponse;
	}

	public JavaEvalRequestMsgIn getJavaRequest() {
		return javaRequest;
	}

	public void setJavaRequest(JavaEvalRequestMsgIn javaRequest) {
		this.javaRequest = javaRequest;
	}

	public PlaybackCommandMsgIn getPlayback() {
		return playback;
	}

	public void setPlayback(PlaybackCommandMsgIn playback) {
		this.playback = playback;
	}

	public PixelsAreaResponseMsgIn getPixelsResponse() {
		return pixelsResponse;
	}

	public void setPixelsResponse(PixelsAreaResponseMsgIn pixelsResponse) {
		this.pixelsResponse = pixelsResponse;
	}

	public WindowEventMsgIn getWindow() {
		return window;
	}

	public void setWindow(WindowEventMsgIn window) {
		this.window = window;
	}

	public ActionEventMsgIn getAction() {
		return action;
	}

	public void setAction(ActionEventMsgIn action) {
		this.action = action;
	}

	public AudioEventMsgIn getAudio() {
		return audio;
	}

	public void setAudio(AudioEventMsgIn audio) {
		this.audio = audio;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy