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

fr.lteconsulting.hexa.client.interfaces.IValueControl Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.client.interfaces;

public interface IValueControl
{
	public interface Callback
	{
		void onValueControlChange( Object cookie );
	}

	public abstract void setValue( T value );

	public abstract T getValue();

	public void addCallback( Callback callback, Object cookie );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy