< prev index next >

modules/javafx.base/src/main/java/javafx/beans/property/adapter/ReadOnlyJavaBeanProperty.java

Print this page
rev 10443 : 8177341: Fix typos in FX API docs
Reviewed-by:

*** 1,7 **** /* ! * Copyright (c) 2011, 2014, 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 --- 1,7 ---- /* ! * 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
*** 26,39 **** package javafx.beans.property.adapter; import javafx.beans.property.ReadOnlyProperty; /** ! * {@code JavaBeanProperty&lt;T&gt;} is the super interface of all adapters between * readonly Java Bean properties and JavaFX properties. * ! * @param T The type of the wrapped property * @since JavaFX 2.1 */ public interface ReadOnlyJavaBeanProperty<T> extends ReadOnlyProperty<T> { /** * This method can be called to notify the adapter of a change of the Java --- 26,39 ---- package javafx.beans.property.adapter; import javafx.beans.property.ReadOnlyProperty; /** ! * {@code JavaBeanProperty} is the super interface of all adapters between * readonly Java Bean properties and JavaFX properties. * ! * @param <T> The type of the wrapped property * @since JavaFX 2.1 */ public interface ReadOnlyJavaBeanProperty<T> extends ReadOnlyProperty<T> { /** * This method can be called to notify the adapter of a change of the Java
< prev index next >