Package org.eclipse.jface.text.source

Examples of org.eclipse.jface.text.source.ISourceViewer.invalidateTextPresentation()


     
      // Invalidate ==> remove applied text presentation
      if (!redrawAll && viewer instanceof ITextViewerExtension2)
        ((ITextViewerExtension2) viewer).invalidateTextPresentation(offset, length);
      else
        viewer.invalidateTextPresentation();
     
      // Remove underline
      if (viewer instanceof ITextViewerExtension5) {
        ITextViewerExtension5 extension= (ITextViewerExtension5) viewer;
        offset= extension.modelOffset2WidgetOffset(offset);
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.