Package fr.soleil.comete.bean.tangotree.datasource

Examples of fr.soleil.comete.bean.tangotree.datasource.DatabaseTangoSourceDevice


    private static void fillRecordedDevicesTreeMap() {

        List<String> devicesList = new LinkedList<String>();
        if (tangoSourceList == null) {
            try {
                ISourceDevice tangoSource = new DatabaseTangoSourceDevice(true, true);
                if (tangoSource != null) {
                    tangoSourceList = tangoSource.getSourceList();
                }

            } catch (SourceDeviceException e) {
                TechnicalDataMessageManager.notifyNewErrorDetected(e);
            }
View Full Code Here


            selectOk2pan.add(okButton2, BorderLayout.SOUTH);
            gridPanel.add(selectOk2pan);

            Panel selectOk3pan = new Panel();
            selectOk3pan.setLayout(new BorderLayout());
            ISourceDevice tangoSource = new DatabaseTangoSourceDevice(true, true);
            tangoSelector = new SwingDeviceSelector(tangoSource, false, true);
            selectOk3pan.add(tangoSelector.getSelectorComponent(), BorderLayout.CENTER);
            JButton okButton3 = new JButton("ok");
            okButton3.addActionListener(new ActionListener() {
View Full Code Here

        selectOk2pan.add(okButton2, BorderLayout.SOUTH);
        gridPanel.add(selectOk2pan);

        Panel selectOk3pan = new Panel();
        selectOk3pan.setLayout(new BorderLayout());
        ISourceDevice tangoSource = new DatabaseTangoSourceDevice(true, true);
        tangoSelector = new SwingDeviceSelector(tangoSource, false, true);
        selectOk3pan.add(tangoSelector.getSelectorComponent(), BorderLayout.CENTER);
        JButton okButton3 = new JButton("ok");
        okButton3.addActionListener(new ActionListener() {
View Full Code Here

TOP

Related Classes of fr.soleil.comete.bean.tangotree.datasource.DatabaseTangoSourceDevice

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.