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

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

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

import org.webswing.model.Msg;

public class ParamMsg implements Msg {

	private static final long serialVersionUID = 3451224547948314923L;

	private String name;
	private String value;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy