/* * Copyright (c) 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 myapp4; import java.lang.reflect.UndeclaredThrowableException; import javafx.beans.property.adapter.JavaBeanDoubleProperty; import javafx.beans.property.adapter.JavaBeanDoublePropertyBuilder; import javafx.beans.property.adapter.JavaBeanObjectProperty; import javafx.beans.property.adapter.JavaBeanObjectPropertyBuilder; import javafx.beans.property.adapter.ReadOnlyJavaBeanStringProperty; import javafx.beans.property.adapter.ReadOnlyJavaBeanStringPropertyBuilder; import myapp4.pkg3.POJO; import myapp4.pkg3.RefClass; import static myapp4.Constants.*; // This logic is copied from AppBeansUnexported. /** * Modular test application for testing JavaFX beans. * This is launched by ModuleLauncherTest. */ public class AppBeansQualExported { /** * @param args the command line arguments */ public static void main(String[] args) { try { new AppBeansQualExported().doTest(); System.exit(ERROR_NONE); } catch (Throwable t) { t.printStackTrace(System.err); System.exit(ERROR_ASSERTION_FAILURE); } } private void checkException(UndeclaredThrowableException ex) { Throwable cause = ex.getCause(); if (! (cause instanceof IllegalAccessException)) { System.err.println("ERROR: unexpected cause: " + cause); throw ex; } String message = cause.getMessage(); if (message == null) { System.err.println("ERROR: detail message of cause is null"); throw ex; } boolean badMessage = false; if (!message.contains(" cannot access class ")) badMessage = true; if (!message.contains(" does not open ")) badMessage = true; if (!message.endsWith(" to javafx.base")) badMessage = true; if (badMessage) { System.err.println("ERROR: detail message not formatted correctly: " + message); throw ex; } } public void doTest() throws Exception { String name = "test object"; double val = 1.2; RefClass obj = new RefClass(); POJO bean = new POJO(name, val, obj); JavaBeanDoubleProperty valProp = JavaBeanDoublePropertyBuilder.create() .bean(bean) .name("val") .build(); try { valProp.get(); throw new AssertionError("ERROR: did not get the expected exception"); } catch (UndeclaredThrowableException ex) { checkException(ex); } val = 2.5; try { valProp.set(val); throw new AssertionError("ERROR: did not get the expected exception"); } catch (UndeclaredThrowableException ex) { checkException(ex); } JavaBeanObjectProperty objProp = JavaBeanObjectPropertyBuilder.create() .bean(bean) .name("obj") .build(); try { objProp.get(); throw new AssertionError("ERROR: did not get the expected exception"); } catch (UndeclaredThrowableException ex) { checkException(ex); } obj = new RefClass(); try { objProp.set(obj); throw new AssertionError("ERROR: did not get the expected exception"); } catch (UndeclaredThrowableException ex) { checkException(ex); } ReadOnlyJavaBeanStringProperty namePropRO = ReadOnlyJavaBeanStringPropertyBuilder.create() .bean(bean) .name("name") .build(); try { namePropRO.get(); throw new AssertionError("ERROR: did not get the expected exception"); } catch (UndeclaredThrowableException ex) { checkException(ex); } } }