java.lang.Object
javafx.beans.binding.NumberExpressionBase
javafx.beans.binding.LongExpression
javafx.beans.property.ReadOnlyLongProperty
javafx.beans.property.LongProperty
javafx.beans.property.LongPropertyBase
- All Implemented Interfaces:
 NumberExpression,Observable,Property<Number>,ReadOnlyProperty<Number>,ObservableLongValue,ObservableNumberValue,ObservableValue<Number>,WritableLongValue,WritableNumberValue,WritableValue<Number>
- Direct Known Subclasses:
 SimpleLongProperty,StyleableLongProperty
public abstract class LongPropertyBase extends LongProperty
The class 
LongPropertyBase is the base class for a property wrapping
 a long value.
 It provides all the functionality required for a property except for the
 ReadOnlyProperty.getBean() and ReadOnlyProperty.getName() methods, which must be implemented
 by extending classes.- Since:
 - JavaFX 2.0
 - See Also:
 LongProperty
- 
Constructor Summary
Constructors Constructor Description LongPropertyBase()The constructor of theLongPropertyBase.LongPropertyBase(long initialValue)The constructor of theLongPropertyBase. - 
Method Summary
Modifier and Type Method Description protected voidfireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners.protected voidinvalidated()The methodinvalidated()can be overridden to receive invalidation notifications.StringtoString()Returns a string representation of thisLongPropertyBaseobject.Methods declared in class javafx.beans.property.LongProperty
asObject, longPropertyMethods declared in class javafx.beans.property.ReadOnlyLongProperty
readOnlyLongPropertyMethods declared in class javafx.beans.binding.LongExpression
add, add, add, add, divide, divide, divide, divide, longExpression, longExpression, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtractMethods declared in class javafx.beans.binding.NumberExpressionBase
numberExpressionMethods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.binding.NumberExpression
add, asString, asString, asString, divide, greaterThan, greaterThan, greaterThan, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, lessThan, lessThan, lessThan, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, multiply, subtractMethods declared in interface javafx.beans.Observable
addListener, removeListenerMethods declared in interface javafx.beans.value.ObservableLongValue
getMethods declared in interface javafx.beans.value.ObservableNumberValue
doubleValue, floatValue, intValue, longValueMethods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Property
bind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getNameMethods declared in interface javafx.beans.value.WritableLongValue
get, set, setValueMethods declared in interface javafx.beans.value.WritableValue
getValue 
- 
Constructor Details
- 
LongPropertyBase
public LongPropertyBase()The constructor of theLongPropertyBase. - 
LongPropertyBase
public LongPropertyBase(long initialValue)The constructor of theLongPropertyBase.- Parameters:
 initialValue- the initial value of the wrapped value
 
 - 
 - 
Method Details
- 
fireValueChangedEvent
protected void fireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners. This method is called when the value is changed, either manually by callingWritableLongValue.set(long)or in case of a bound property, if the binding becomes invalid. - 
invalidated
protected void invalidated()The methodinvalidated()can be overridden to receive invalidation notifications. This is the preferred option inObjectsdefining the property, because it requires less memory. The default implementation is empty. - 
toString
Returns a string representation of thisLongPropertyBaseobject.- Overrides:
 toStringin classLongProperty- Returns:
 - a string representation of this 
LongPropertyBaseobject. 
 
 -