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

org.webswing.model.jslink.JSObjectMsg Maven / Gradle / Ivy

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

import org.webswing.model.Msg;

public class JSObjectMsg implements Msg {
	private static final long serialVersionUID = -5961292110459877432L;
	private String id;

	public JSObjectMsg() {
	}

	public JSObjectMsg(String id) {
		this.id = id;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy