Package org.eclipse.php.internal.ui.editor.hover

Examples of org.eclipse.php.internal.ui.editor.hover.BestMatchHover


  @Override
  protected IInformationProvider getInformationProvider(
      ISourceViewer sourceViewer, String partitionType) {
    if (!(sourceViewer instanceof PHPStructuredTextViewer))
      return super.getInformationProvider(sourceViewer, partitionType);
    ITextHover bestMatchHover = new BestMatchHover(
        ((PHPStructuredTextViewer) sourceViewer).getTextEditor(),
        PHPUiPlugin.getDefault().getPreferenceStore());

    return new TextHoverInformationProvider(bestMatchHover);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.editor.hover.BestMatchHover

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.