Package com.salas.bb.utils.uif

Examples of com.salas.bb.utils.uif.ActionLabel


    {
        if (reloadPanel == null)
        {
            String text = Strings.message("click.here.to.load.our.collection.of.interesting.feeds");
            String overText = Strings.message("load.our.collection.of.interesting.feeds");
            ActionLabel label = new ActionLabel(text, new ReloadAction(), overText);

            label.setForeground(Color.BLUE);
            reloadPanel = new JPanel(new FormLayout("pref:grow", "pref:grow"));
            reloadPanel.add(label, new CellConstraints().xy(1, 1, "c, c"));
        }

        return reloadPanel;
View Full Code Here

TOP

Related Classes of com.salas.bb.utils.uif.ActionLabel

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.