Home
last modified time | relevance | path

Searched refs:fPresenter (Results 1 – 7 of 7) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/text/
H A DDefaultInformationControl.java117 private final IInformationPresenter fPresenter; field in DefaultInformationControl
138 fPresenter= new HTMLTextPresenter(!isResizeable); in DefaultInformationControl()
167 fPresenter= presenter; in DefaultInformationControl()
197 fPresenter= presenter; in DefaultInformationControl()
258 fPresenter= presenter; in DefaultInformationControl()
293 fPresenter= presenter; in DefaultInformationControl()
315 if (fPresenter == null) { in setInformation()
340 if (fPresenter instanceof IInformationPresenterExtension) in setInformation()
341 …content= ((IInformationPresenterExtension)fPresenter).updatePresentation(fText, content, fPresenta… in setInformation()
343 …content= fPresenter.updatePresentation(getShell().getDisplay(), content, fPresentation, maxWidth, … in setInformation()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/
H A DSemanticHighlightingManager.java247 private SemanticHighlightingPresenter fPresenter; field in SemanticHighlightingManager
318 fPresenter= new SemanticHighlightingPresenter(); in enable()
395 if (fPresenter != null) { in disable()
396 fPresenter.uninstall(); in disable()
397 fPresenter= null; in disable()
493 fPresenter.highlightingStyleChanged(fHighlightings[i]); in handlePropertyChangeEvent()
501 fPresenter.highlightingStyleChanged(fHighlightings[i]); in handlePropertyChangeEvent()
509 fPresenter.highlightingStyleChanged(fHighlightings[i]); in handlePropertyChangeEvent()
517 fPresenter.highlightingStyleChanged(fHighlightings[i]); in handlePropertyChangeEvent()
525 fPresenter.highlightingStyleChanged(fHighlightings[i]); in handlePropertyChangeEvent()
[all …]
H A DSemanticHighlightingReconciler.java260 private SemanticHighlightingPresenter fPresenter; field in SemanticHighlightingReconciler
322 fJobPresenter= fPresenter; in reconciled()
459 fPresenter= presenter; in install()
478 if (fPresenter != null) in uninstall()
479 fPresenter.setCanceled(true); in uninstall()
492 fPresenter= null; in uninstall()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/link/contentassist/
H A DContextInformationPopup2.java74 public IContextInformationPresenter fPresenter; field in ContextInformationPopup2.ContextFrame
174 current.fPresenter= fContentAssistant.getContextInformationPresenter(fViewer, offset); in internalShowContextInfo()
193 if (frame.fPresenter != null) { in internalShowContextFrame()
196 frame.fPresenter.install(frame.fInformation, fViewer, frame.fBeginOffset); in internalShowContextFrame()
197 frame.fPresenter.updatePresentation(frame.fOffset, fTextPresentation); in internalShowContextFrame()
627 …} else if (fFrame.fPresenter != null && fFrame.fPresenter.updatePresentation(offset, fTextPresenta… in validateContextInformation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/
H A DContextInformationPopup.java79 final IContextInformationPresenter fPresenter; field in ContextInformationPopup.ContextFrame
90 fPresenter = presenter; in ContextFrame()
359 if (frame.fPresenter != null) { in internalShowContextFrame()
363 frame.fPresenter.updatePresentation(frame.fOffset, fTextPresentation); in internalShowContextFrame()
893 …} else if (top.fPresenter != null && top.fPresenter.updatePresentation(offset, fTextPresentation))… in validateContextInformation()
H A DContentAssistSubjectControlAdapter.java360 if (frame.fPresenter instanceof ISubjectControlContextInformationPresenter) in installContextInformationPresenter()
363 frame.fPresenter.install(frame.fInformation, fViewer, frame.fBeginOffset); in installContextInformationPresenter()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/
H A DJavadocView.java368 private HTMLTextPresenter fPresenter; field in JavadocView
610 fPresenter= new FallbackInformationPresenter(); in internalCreatePartControl()
974 …javadocHtml= fPresenter.updatePresentation(fText, javadocHtml, fPresentation, size.width, size.hei… in doSetInput()