Package org.vietspider.ui.widget

Examples of org.vietspider.ui.widget.ImageHyperlink.addHyperlinkListener()


 
  public ImageHyperlink createIcon(Composite com, Image img, String tip, IHyperlinkListener listener) {   
    ImageHyperlink icon = new ImageHyperlink(com , SWT.CENTER);
    icon.setBackground(com.getBackground());
    icon.setImage(img);
    if(listener != null) icon.addHyperlinkListener(listener);
    icon.setToolTipText(tip);
    return icon;   
  }

}
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.