Package com.nexirius.framework.dataviewer

Examples of com.nexirius.framework.dataviewer.DataViewer


        }
    }

    private void initMainPanel() throws Exception {
        // create an editor for the main model
        DataViewer editor = getFactory().createViewer(mainModel, true);

        // access the Swing JComponents
        JComponent editorComponent = editor.getJComponent();

        // insert generated JComponents into the application window
        getMainPanel().setLayout(new BorderLayout());
        getMainPanel().add(editorComponent, BorderLayout.CENTER);
        SwingUtilities.invokeLater(new Repainter());
View Full Code Here

TOP

Related Classes of com.nexirius.framework.dataviewer.DataViewer

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.