Package org.jrebirth.af.core.ui.model.simple

Source Code of org.jrebirth.af.core.ui.model.simple.MySimpleObjectModel

package org.jrebirth.af.core.ui.model.simple;

import javafx.scene.layout.BorderPane;

import org.jrebirth.af.core.ui.model.ModelBean;
import org.jrebirth.af.core.ui.simple.DefaultSimpleObjectModel;

public class MySimpleObjectModel extends DefaultSimpleObjectModel<BorderPane, ModelBean> {

    @Override
    protected void initSimpleView() {
        getRootNode().setCenter(new BorderPane());
    }

}
TOP

Related Classes of org.jrebirth.af.core.ui.model.simple.MySimpleObjectModel

TOP
Copyright © 2018 www.massapi.com. 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.