Examples of JLinkLabel


Examples of de.ailis.xadrian.components.JLinkLabel

            + I18N.getString("version"));
        titleLabel.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
        final JLabel copyrightLabel =
            new JLabel(I18N.getString("copyright") + ", ");
        final String email = I18N.getString("email");
        final JLabel emailLabel = new JLinkLabel(email, "mailto:" + email);
        final String homepage = I18N.getString("homepage");
        final JLabel homepageLabel = new JLinkLabel(homepage, homepage);

        // Create the progress bar.
        this.progressBar = new JProgressBar(SwingConstants.HORIZONTAL);

        // Create the content panel
View Full Code Here

Examples of de.ailis.xadrian.components.JLinkLabel

        final JLabel titleLabel = new JLabel(I18N.getString("title") + " "
            + I18N.getString("version"));
        titleLabel.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
        final JLabel copyrightLabel = new JLabel(I18N.getString("copyright") + ", ");
        final String email = I18N.getString("email");
        final JLabel emailLabel = new JLinkLabel(email, "mailto:" + email);
        final String homepage = I18N.getString("homepage");
        final JLabel homepageLabel = new JLinkLabel(homepage, homepage);

        // Create the license pane
        final JTextPane licenseTextPane = new JTextPane();
        licenseTextPane.setEditable(false);
        licenseTextPane.setBackground(Color.WHITE);
View Full Code Here

Examples of net.sourceforge.processdash.ui.lib.JLinkLabel

        if (hasLinkStart || hasLinkEnd) {
            if (!hasLinkStart)
                line = "<a>" + line;
            if (!hasLinkEnd)
                line = line + "</a>";
            return new JLinkLabel(line, hyperlink);
        } else {
            return line;
        }
    }
View Full Code Here

Examples of net.sourceforge.processdash.ui.lib.JLinkLabel

        Object[] message = new Object[text.length];
        for (int i = 0; i < message.length; i++) {
            if (text[i].contains("<a") == false)
                message[i] = text[i];
            else if (linkListener != null)
                message[i] = new JLinkLabel(text[i], linkListener);
            else {
                String s = text[i];
                s = StringUtils.findAndReplace(s, "<a>", "");
                s = StringUtils.findAndReplace(s, "</a>", "");
                message[i] = s;
View Full Code Here

Examples of net.sourceforge.processdash.ui.lib.JLinkLabel

            super();
            setLayout(new BoxLayout(this, BoxLayout.X_AXIS));

            checkbox = new OptionCheckbox(null, metadataKey, defaultValue);
            add(checkbox);
            add(new JLinkLabel(resources.getString(resourceKey), this));

            hyperlinkHandler = EventHandler.create(ActionListener.class,
                TaskScheduleOptions.this, actionMethod);
            checkbox.addActionListener(this);
        }
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.