com.dragome.forms.bindings.client.value.ValueSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-form-bindings Show documentation
Show all versions of dragome-form-bindings Show documentation
Dragome SDK module: form bindings
package com.dragome.forms.bindings.client.value;
/**
* This interface is used as a basis for all objects that can vend a value of particular type.
* @see com.pietschy.gwt.pectin.client.value.ValueModel
*/
public interface ValueSource
{
/**
* Gets the value held by this provider.
* @return the value held by this provider.
*/
T getValue();
}