< prev index next >

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

Print this page
rev 10441 : imported patch fix-8177566-trampoline
rev 10443 : [mq]: doc-8177566-trampoline

*** 1,7 **** /* ! * Copyright (c) 2011, 2015, 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
*** 23,32 **** --- 23,33 ---- * questions. */ package javafx.beans.property.adapter; + import com.sun.javafx.property.MethodHelper; import com.sun.javafx.property.adapter.Disposer; import com.sun.javafx.property.adapter.ReadOnlyPropertyDescriptor; import javafx.beans.property.ReadOnlyIntegerPropertyBase; import java.lang.reflect.InvocationTargetException;
*** 34,57 **** import java.security.AccessController; import java.security.AccessControlContext; import java.security.PrivilegedAction; - import sun.reflect.misc.MethodUtil; - /** * A {@code ReadOnlyJavaBeanIntegerProperty} provides an adapter between a regular * read only Java Bean property of type {@code int} or {@code Integer} and a JavaFX * {@code ReadOnlyIntegerProperty}. It cannot be created directly, but a * {@link ReadOnlyJavaBeanIntegerPropertyBuilder} has to be used. * <p> ! * As a minimum, the Java Bean must implement a getter for the * property. If the getter of an instance of this class is called, the property of * the Java Bean is returned. If the Java Bean property is bound (i.e. it supports * PropertyChangeListeners), this {@code ReadOnlyJavaBeanIntegerProperty} will be * aware of changes in the Java Bean. Otherwise it can be notified about * changes by calling {@link #fireValueChangedEvent()}. * * @see javafx.beans.property.ReadOnlyIntegerProperty * @see ReadOnlyJavaBeanIntegerPropertyBuilder * @since JavaFX 2.1 */ --- 35,64 ---- import java.security.AccessController; import java.security.AccessControlContext; import java.security.PrivilegedAction; /** * A {@code ReadOnlyJavaBeanIntegerProperty} provides an adapter between a regular * read only Java Bean property of type {@code int} or {@code Integer} and a JavaFX * {@code ReadOnlyIntegerProperty}. It cannot be created directly, but a * {@link ReadOnlyJavaBeanIntegerPropertyBuilder} has to be used. * <p> ! * As a minimum, the Java Bean class must implement a getter for the * property. If the getter of an instance of this class is called, the property of * the Java Bean is returned. If the Java Bean property is bound (i.e. it supports * PropertyChangeListeners), this {@code ReadOnlyJavaBeanIntegerProperty} will be * aware of changes in the Java Bean. Otherwise it can be notified about * changes by calling {@link #fireValueChangedEvent()}. + * </p> + * <p> + * The Java Bean class must be declared public. If that class is in a named + * module, then the module must {@link Module#isOpen(String,Module) open} + * the containing package to at least the {@code javafx.base} module + * (or {@link Module#isExported(String) export} the containing package + * unconditionally). + * </p> * * @see javafx.beans.property.ReadOnlyIntegerProperty * @see ReadOnlyJavaBeanIntegerPropertyBuilder * @since JavaFX 2.1 */
*** 78,88 **** */ @Override public int get() { return AccessController.doPrivileged((PrivilegedAction<Integer>) () -> { try { ! return ((Number)MethodUtil.invoke( descriptor.getGetter(), getBean(), (Object[])null)).intValue(); } catch (IllegalAccessException e) { throw new UndeclaredThrowableException(e); } catch (InvocationTargetException e) { throw new UndeclaredThrowableException(e); --- 85,95 ---- */ @Override public int get() { return AccessController.doPrivileged((PrivilegedAction<Integer>) () -> { try { ! return ((Number)MethodHelper.invoke( descriptor.getGetter(), getBean(), (Object[])null)).intValue(); } catch (IllegalAccessException e) { throw new UndeclaredThrowableException(e); } catch (InvocationTargetException e) { throw new UndeclaredThrowableException(e);
< prev index next >