/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.beans.binding; /** * A tagging interface to mark all Bindings that wrap a number-value. * * @see Binding * @see javafx.beans.binding.NumberExpression * * * @since JavaFX 2.0 */ public interface NumberBinding extends Binding, NumberExpression { }