Package tk.eclipse.plugin.htmleditor.editors

Examples of tk.eclipse.plugin.htmleditor.editors.HTMLHyperlinkSupport


  protected IHTMLOutlinePage createOutlinePage() {
    return new JSPOutlinePage(this);
  }
 
  protected HTMLHyperlinkSupport createHyperlinkSupport() {
    HTMLHyperlinkSupport hyperlink = super.createHyperlinkSupport();
    hyperlink.addHyperlinkProvider(new JSPHyperlinkProvider());
   
    IHyperlinkProvider[] providers = HTMLPlugin.getDefault().getHyperlinkProviders();
    for(int i=0;i<providers.length;i++){
      hyperlink.addHyperlinkProvider(providers[i]);
    }
   
    return hyperlink;
  }
View Full Code Here

TOP

Related Classes of tk.eclipse.plugin.htmleditor.editors.HTMLHyperlinkSupport

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.