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

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

	private static final long serialVersionUID = 4159382604946656046L;

	public static enum CopyEventMsgType {
		copy, cut, getFileFromClipboard
	}

	private CopyEventMsgType type;
	private String file;

	public CopyEventMsgType getType() {
		return type;
	}

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

	public String getFile() {
		return file;
	}

	public void setFile(String file) {
		this.file = file;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy