Package org.eclipse.dltk.internal.ui.text.hover

Examples of org.eclipse.dltk.internal.ui.text.hover.ScriptInformationProvider_Mod


  }
 
  @Override
  public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    InformationPresenter informationPresenter = (InformationPresenter) super.getInformationPresenter(sourceViewer);
    ScriptInformationProvider_Mod sip = new ScriptInformationProvider_Mod(getEditor()) {
      @Override
      protected IScriptEditorTextHover createImplementation() {
        return new DeeDocTextHover();
      }
    };
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.ui.text.hover.ScriptInformationProvider_Mod

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.