Package modbuspal.binding

Examples of modbuspal.binding.Binding.detach()


        if( binding != null )
        {
            Binding old = bindings.get(index);
            if( old!=null )
            {
                old.detach();
            }
            binding.attach(this,index);
            bindings.put(index, binding );
        }
View Full Code Here


    {
        // check if a binding exists
        Binding binding = bindings.get( index );
        if( binding != null )
        {
            binding.detach();
            bindings.remove(index);
        }

        // delete register
        values.delete( index );
View Full Code Here

    public void unbind(int index)
    {
        Binding removed = bindings.remove(index);
        if( removed!=null )
        {
            removed.detach();
            notifyTableChanged( values.getOrderOf(index) );
        }
    }

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.