Package cz.mp.k3bg.misc

Examples of cz.mp.k3bg.misc.HyperlinkHandler


     * @param editorPaneScroll
     */
    private static void adjustEditorPane(JEditorPane editorPane, JScrollPane editorPaneScroll) {
        editorPane.setContentType(new HTMLEditorKit().getContentType());

        editorPane.addHyperlinkListener(new HyperlinkHandler());
        editorPane.setEditable(false);

//        editorPane.setOpaque(true);
        editorPane.setOpaque(false);
        editorPane.setBackground(UIManager.getColor("Panel.background"));
View Full Code Here

TOP

Related Classes of cz.mp.k3bg.misc.HyperlinkHandler

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.