Package org.jitterbit.ui.util

Examples of org.jitterbit.ui.util.AbstractActionPropertyChangeListener


        label.setIcon(icon);
        label.setToolTipText((String) action.getValue(Action.SHORT_DESCRIPTION));
        label.setBackground(Color.WHITE);
        final BigButton button = new BigButton(label);
        button.addActionListener(action);
        action.addPropertyChangeListener(new AbstractActionPropertyChangeListener(button, action) {

            @Override
            public void propertyChange(PropertyChangeEvent evt) {
                if ("enabled".equals(evt.getPropertyName())) {
                    button.setEnabled(getActionListenedTo().isEnabled());
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.util.AbstractActionPropertyChangeListener

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.