Package org.jitterbit.ui.widget

Examples of org.jitterbit.ui.widget.Label


            label.setIcon(CommonIcons.REFRESH_16);
        }
    };

    public static void decorate(JButton button, LabelDecorator decorator) {
        Label label = ButtonUtils.asLabel(button);
        decorator.decorate(label);
    }
View Full Code Here


    }

    @Override
    public final void decorateTitle(LabelDecorator decorator) {
        if (titleLabel != null) {
            Label lbl = new LabelAdapter(titleLabel);
            decorator.decorate(lbl);
        }
    }
View Full Code Here

    /**
     * Decorates the browse-button used by this file selector.
     */
    public final void decorateBrowseButton(LabelDecorator decorator) {
        Label label = new LabelAdapter(browseButton);
        decorator.decorate(label);
    }
View Full Code Here

    /**
     *
     * @since 1.2
     */
    public void decorateLabel(LabelDecorator decorator) {
        Label lbl = new LabelAdapter(label);
        decorator.decorate(lbl);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.widget.Label

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.