Package de.ailis.xadrian.components

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


        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

TOP

Related Classes of de.ailis.xadrian.components.JLinkLabel

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.