/* * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.property.adapter; import javafx.beans.property.adapter.ReadOnlyJavaBeanObjectProperty; import javafx.beans.property.adapter.ReadOnlyJavaBeanObjectPropertyBuilder; public final class JavaBeanQuickAccessor { private JavaBeanQuickAccessor() { } public static ReadOnlyJavaBeanObjectProperty createReadOnlyJavaBeanObjectProperty(Object bean, String name) throws NoSuchMethodException { return ReadOnlyJavaBeanObjectPropertyBuilder.create().bean(bean).name(name).build(); } }