Package mydatagenerator.gui.utils.link

Examples of mydatagenerator.gui.utils.link.HtmlLinkAction


   * @param toolTip
   * @return
   */
  private JXHyperlink createLink(String url, String toolTip){
   
    HtmlLinkAction action = new HtmlLinkAction(url);   
    //JXHyperlink is special Component offered by Swingx library
    JXHyperlink link = new JXHyperlink(action);
    link.setToolTipText(toolTip);
   
    return link;
View Full Code Here

TOP

Related Classes of mydatagenerator.gui.utils.link.HtmlLinkAction

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.