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

io.nadron.client.event.impl.ChangeAttributeEvent Maven / Gradle / Ivy

Go to download

This is a client library for Nadron server https://github.com/menacher/java-game-server/tree/netty4/nadron. Java clients can use this program to connect and interact with nadron server.

There is a newer version: 0.5
Show newest version
package io.nadron.client.event.impl;

public class ChangeAttributeEvent extends DefaultEvent
{
	/**
	 * 
	 */
	private static final long serialVersionUID = -5257419644823465715L;
	private String key;
	private Object value;

	public String getKey()
	{
		return key;
	}

	public void setKey(String key)
	{
		this.key = key;
	}

	public Object getValue()
	{
		return value;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy