Package modbuspal.binding

Examples of modbuspal.binding.BindingEditor


        }

        else
        {
            // display the bind dialog
            BindingEditor dialog = new BindingEditor(slaveDialog.modbusPalPane);
            slaveDialog.setStatus("Binding...");
            dialog.setVisible(true);

            // retrieve the selected automation
            Automation source = dialog.getSelectedAutomation();
            if( source == null )
            {
                slaveDialog.setStatus("Binding cancelled by user.");
                return;
            }

            // get the selected binding order
            int selectedOrder = dialog.getSelectedOrder();
           
            // get the selected binding class
            String selectedClass = dialog.getSelectedClass();

            // get the selected rows
            int selectedAddresses[] = ((ModbusRegistersTable)registersTable).getSelectedAddresses();

            // bind all selected registers
View Full Code Here

TOP

Related Classes of modbuspal.binding.BindingEditor

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.