Package com.santiagolizardo.beobachter.gui.components

Examples of com.santiagolizardo.beobachter.gui.components.HtmlLabel


        Constants.APP_URL, Constants.APP_URL));
    String creditsText = ResourcesLoader.readResource(AboutDialog.class,
        "credits.html");

    String content = headlineText.concat(infoText).concat(creditsText);
    JEditorPane lblCredits = new HtmlLabel(content);
    lblCredits.setCaretPosition(0);

    JScrollPane scrollPane = new JScrollPane(lblCredits);
    scrollPane.setPreferredSize(new Dimension(380, 240));
    scrollPane
        .setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
View Full Code Here

TOP

Related Classes of com.santiagolizardo.beobachter.gui.components.HtmlLabel

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.