Spec-Zone .ru
спецификации, руководства, описания, API
|
public class ReadOnlyLongWrapper extends SimpleLongProperty
Constructor and Description |
---|
ReadOnlyLongWrapper()
The constructor of
ReadOnlyLongWrapper |
ReadOnlyLongWrapper(long initialValue)
The constructor of
ReadOnlyLongWrapper |
ReadOnlyLongWrapper(java.lang.Object bean,
java.lang.String name)
The constructor of
ReadOnlyLongWrapper |
ReadOnlyLongWrapper(java.lang.Object bean,
java.lang.String name,
long initialValue)
The constructor of
ReadOnlyLongWrapper |
Modifier and Type | Method and Description |
---|---|
void |
addListener(ChangeListener<? super java.lang.Number> listener)
Adds a
ChangeListener which will be notified whenever the value
of the ObservableValue changes. |
void |
addListener(InvalidationListener listener)
Adds an
InvalidationListener which will be notified whenever the
Observable becomes invalid. |
protected void |
fireValueChangedEvent()
Sends notifications to all attached
InvalidationListeners and
ChangeListeners . |
ReadOnlyLongProperty |
getReadOnlyProperty()
Returns the readonly property, that is synchronized with this
ReadOnlyLongWrapper . |
void |
removeListener(ChangeListener<? super java.lang.Number> listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
ObservableValue changes. |
void |
removeListener(InvalidationListener listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
Observable becomes invalid. |
getBean, getName
bind, get, invalidated, isBound, set, toString, unbind
bindBidirectional, setValue, unbindBidirectional
equals, hashCode
add, add, add, add, divide, divide, divide, divide, doubleValue, floatValue, getValue, intValue, longExpression, longValue, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract
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, numberExpression, subtract
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getValue
getValue
public ReadOnlyLongWrapper()
ReadOnlyLongWrapper
public ReadOnlyLongWrapper(long initialValue)
ReadOnlyLongWrapper
initialValue
- the initial value of the wrapped valuepublic ReadOnlyLongWrapper(java.lang.Object bean, java.lang.String name)
ReadOnlyLongWrapper
bean
- the bean of this ReadOnlyLongProperty
name
- the name of this ReadOnlyLongProperty
public ReadOnlyLongWrapper(java.lang.Object bean, java.lang.String name, long initialValue)
ReadOnlyLongWrapper
bean
- the bean of this ReadOnlyLongProperty
name
- the name of this ReadOnlyLongProperty
initialValue
- the initial value of the wrapped valuepublic ReadOnlyLongProperty getReadOnlyProperty()
ReadOnlyLongWrapper
.public void addListener(InvalidationListener listener)
InvalidationListener
which will be notified whenever the
Observable
becomes invalid. If the same
listener is added more than once, then it will be notified more than
once. That is, no check is made to ensure uniqueness.
Note that the same actual InvalidationListener
instance may be
safely registered for different Observables
.
The Observable
stores a strong reference to the listener
which will prevent the listener from being garbage collected and may
result in a memory leak. It is recommended to either unregister a
listener by calling removeListener
after use or to use an instance of
WeakInvalidationListener
avoid this situation.
addListener
in interface Observable
addListener
in class LongPropertyBase
listener
- The listener to registerObservable.removeListener(InvalidationListener)
public void removeListener(InvalidationListener listener)
Observable
becomes invalid.
If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
removeListener
in interface Observable
removeListener
in class LongPropertyBase
listener
- The listener to removeObservable.addListener(InvalidationListener)
public void addListener(ChangeListener<? super java.lang.Number> listener)
ChangeListener
which will be notified whenever the value
of the ObservableValue
changes. If the same listener is added
more than once, then it will be notified more than once. That is, no
check is made to ensure uniqueness.
Note that the same actual ChangeListener
instance may be safely
registered for different ObservableValues
.
The ObservableValue
stores a strong reference to the listener
which will prevent the listener from being garbage collected and may
result in a memory leak. It is recommended to either unregister a
listener by calling removeListener
after use or to use an instance of
WeakChangeListener
avoid this situation.
addListener
in interface ObservableValue<java.lang.Number>
addListener
in class LongPropertyBase
listener
- The listener to registerObservableValue.removeListener(ChangeListener)
public void removeListener(ChangeListener<? super java.lang.Number> listener)
ObservableValue
changes.
If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
removeListener
in interface ObservableValue<java.lang.Number>
removeListener
in class LongPropertyBase
listener
- The listener to removeObservableValue.addListener(ChangeListener)
protected void fireValueChangedEvent()
InvalidationListeners
and
ChangeListeners
.
This method is called when the value is changed, either manually by
calling LongPropertyBase.set(long)
or in case of a bound property, if the
binding becomes invalid.fireValueChangedEvent
in class LongPropertyBase
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to