com.beans.observables.properties.ObservableIntProperty Maven / Gradle / Ivy
package com.beans.observables.properties;
import com.beans.IntProperty;
import com.beans.observables.ObservableIntValue;
/**
*
* A int specialization of {@link ObservableProperty}.
* Provides methods to access using primitive types: {@link #getAsInt()}, {@link #setAsInt(int)}.
* Listeners can be attached to listen for changes of the value.
*
*
* Implements {@link #set(Integer)} and {@link #get()} as proxy calls to {@link #setAsInt(int)}
* and {@link #getAsInt()} respectively.
*
*
* This property is not nullable.
*
*
* @since JavaBeans 1.0
*/
public interface ObservableIntProperty
extends ObservableProperty, ObservableIntValue, IntProperty {
}