I had this ad and I donβt see what porpouse is:
DoubleProperty value = new DoublePropertyBase(0) {
@Override protected void invalidated() {
if (getValue() < get()) setValue(get());
}
@Override public String getName() { return "value"; }
};
It seems that getValue () is a new value and get () is old, but the documentation does not say so.
source
share