Package org.jrebirth.af.core.resource.fxml

Examples of org.jrebirth.af.core.resource.fxml.FXMLItemBase


     *
     * @return a new fresh FXML item
     */
    public static FXMLItemBase create(final FXMLParams fxmlParams) {

        final FXMLItemBase fxmlItem = new FXMLItemBase(fxmlParams);

        // Ensure that the uid will be unique at runtime
        fxmlItem.setUid(fxmlIdGenerator.incrementAndGet());

        return fxmlItem;
    }
View Full Code Here

TOP

Related Classes of org.jrebirth.af.core.resource.fxml.FXMLItemBase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.