Package com.salas.bb.utils.uif

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


    }

    // Initialization of components
    private void initComponents()
    {
        lbLink = new SelectableLabel();
        lbLink.setOpaque(false);

        // Init radio-buttons
        rbLeave = new JRadioButton(Strings.message("invalid.discovery.fix.it.later"));
        rbNewDiscovery = new JRadioButton(Strings.message("invalid.discovery.try.again"));
View Full Code Here


     * @return body of the dialog.
     */
    private JComponent buildBody()
    {
        String link = article.getLink() == null ? null : article.getLink().toString();
        SelectableLabel tfLink = new SelectableLabel(link);
        String title = article.getTitle();
        SelectableLabel tfTitle = new SelectableLabel(title == null
            ? Strings.message("untitled") : title);

        IFeed selectedFeed = article.getFeed();

        JLabel lbGuide = new JLabel(GuidesUtils.getGuidesNames(selectedFeed.getParentGuides()));
View Full Code Here

TOP

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

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.