/*
* Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package javafx.beans.property;
import javafx.beans.InvalidationListener;
import javafx.beans.Observable;
import javafx.beans.WeakInvalidationListener;
import javafx.beans.binding.IntegerExpression;
Superclass for all readonly properties wrapping an int
. See Also: Since: JavaFX 2.0
/**
* Superclass for all readonly properties wrapping an {@code int}.
*
* @see javafx.beans.value.ObservableIntegerValue
* @see javafx.beans.binding.IntegerExpression
* @see ReadOnlyProperty
*
* @since JavaFX 2.0
*/
public abstract class ReadOnlyIntegerProperty extends IntegerExpression
implements ReadOnlyProperty<Number> {
The constructor of ReadOnlyIntegerProperty
. /**
* The constructor of {@code ReadOnlyIntegerProperty}.
*/
public ReadOnlyIntegerProperty() {
}
Returns a string representation of this ReadOnlyIntegerProperty
object. Returns: a string representation of this ReadOnlyIntegerProperty
object.
/**
* Returns a string representation of this {@code ReadOnlyIntegerProperty} object.
* @return a string representation of this {@code ReadOnlyIntegerProperty} object.
*/
@Override
public String toString() {
final Object bean = getBean();
final String name = getName();
final StringBuilder result = new StringBuilder(
"ReadOnlyIntegerProperty [");
if (bean != null) {
result.append("bean: ").append(bean).append(", ");
}
if ((name != null) && !name.equals("")) {
result.append("name: ").append(name).append(", ");
}
result.append("value: ").append(get()).append("]");
return result.toString();
}
Returns a ReadOnlyIntegerProperty
that wraps a ReadOnlyProperty
. If the ReadOnlyProperty
is already a ReadOnlyIntegerProperty
, it will be returned. Otherwise a new ReadOnlyIntegerProperty
is created that is bound to the ReadOnlyProperty
. Note: null values will be interpreted as 0 Params: - property – The source
ReadOnlyProperty
Type parameters: - <T> – The type of Number to be wrapped
Throws: - NullPointerException – if
property
is null
Returns: A ReadOnlyIntegerProperty
that wraps the ReadOnlyProperty
if necessary Since: JavaFX 8.0
/**
* Returns a {@code ReadOnlyIntegerProperty} that wraps a
* {@link javafx.beans.property.ReadOnlyProperty}. If the
* {@code ReadOnlyProperty} is already a {@code ReadOnlyIntegerProperty}, it
* will be returned. Otherwise a new
* {@code ReadOnlyIntegerProperty} is created that is bound to
* the {@code ReadOnlyProperty}.
*
* Note: null values will be interpreted as 0
*
* @param <T> The type of Number to be wrapped
* @param property
* The source {@code ReadOnlyProperty}
* @return A {@code ReadOnlyIntegerProperty} that wraps the
* {@code ReadOnlyProperty} if necessary
* @throws NullPointerException
* if {@code property} is {@code null}
* @since JavaFX 8.0
*/
public static <T extends Number> ReadOnlyIntegerProperty readOnlyIntegerProperty(final ReadOnlyProperty<T> property) {
if (property == null) {
throw new NullPointerException("Property cannot be null");
}
return property instanceof ReadOnlyIntegerProperty ? (ReadOnlyIntegerProperty) property:
new ReadOnlyIntegerPropertyBase() {
private boolean valid = true;
private final InvalidationListener listener = observable -> {
if (valid) {
valid = false;
fireValueChangedEvent();
}
};
{
property.addListener(new WeakInvalidationListener(listener));
}
@Override
public int get() {
valid = true;
final T value = property.getValue();
return value == null ? 0 : value.intValue();
}
@Override
public Object getBean() {
return null; // Virtual property, no bean
}
@Override
public String getName() {
return property.getName();
}
};
}
Creates a ReadOnlyObjectProperty
that holds the value of this ReadOnlyIntegerProperty
. If the value of this ReadOnlyIntegerProperty
changes, the value of the ReadOnlyObjectProperty
will be updated automatically. Returns: the new ReadOnlyObjectProperty
Since: JavaFX 8.0
/**
* Creates a {@link javafx.beans.property.ReadOnlyObjectProperty} that holds the value
* of this {@code ReadOnlyIntegerProperty}. If the
* value of this {@code ReadOnlyIntegerProperty} changes, the value of the
* {@code ReadOnlyObjectProperty} will be updated automatically.
*
* @return the new {@code ReadOnlyObjectProperty}
* @since JavaFX 8.0
*/
@Override
public ReadOnlyObjectProperty<Integer> asObject() {
return new ReadOnlyObjectPropertyBase<Integer>() {
private boolean valid = true;
private final InvalidationListener listener = observable -> {
if (valid) {
valid = false;
fireValueChangedEvent();
}
};
{
ReadOnlyIntegerProperty.this.addListener(new WeakInvalidationListener(listener));
}
@Override
public Object getBean() {
return null; // Virtual property, does not exist on a bean
}
@Override
public String getName() {
return ReadOnlyIntegerProperty.this.getName();
}
@Override
public Integer get() {
valid = true;
return ReadOnlyIntegerProperty.this.getValue();
}
};
};
}