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

org.webswing.model.c2s.SimpleEventMsgIn 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 SimpleEventMsgIn implements MsgIn {

	private static final long serialVersionUID = 5832849328825358575L;

	public enum SimpleEventType {
		unload,
		killSwing,
		paintAck,
		repaint,
		downloadFile,
		deleteFile,
		hb,
		cancelFileSelection,
		requestComponentTree,
		requestWindowSwitchList,
		enableStatisticsLogging,
		disableStatisticsLogging
	}

	public SimpleEventMsgIn() {
	}

	public SimpleEventMsgIn(SimpleEventType type) {
		this.type = type;
	}

	private SimpleEventType type;

	public SimpleEventType getType() {
		return type;
	}

	public void setType(SimpleEventType type) {
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy