Examples of TumbaModel


Examples of fr.soleil.tumba.model.TumbaModel

                m_frameTumba = new Tumba();   
                m_frameTumba.setTitle("Tumba");
                m_frameTumba.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            try
            {
                TumbaModel model = new TumbaModel();
                model.setBeamLineEnergyDeviceName(beamLineEnergyDeviceName);
                model.setTumbaDeviceName(getDeviceName());
                m_frameTumba.setModel(model);
            }
            catch (Exception e){
                JOptionPane.showMessageDialog(null,e.getMessage());
            }
View Full Code Here

Examples of fr.soleil.tumba.model.TumbaModel

    /**
     * @param args
     */
    public static void main(String[] args) {
        final TumbaModel model = new TumbaModel();

        // // Check Tango_HOST
        if (args != null && args.length > 0) {
            model.setTumbaDeviceName(args[0]);
            if (args.length > 1) {
                model.setBeamLineEnergyDeviceName(args[1]);
            }
            else {
                System.out.println("\n-----\nbeamline device is not defined\n-----\n");
            }
        }
View Full Code Here
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.