Java 类org.eclipse.jface.text.information.IInformationPresenter 实例源码

项目:typescript.java    文件:TypeScriptSourceViewerConfiguration.java   
/**
 * Returns the hierarchy presenter which will determine and shown type
 * hierarchy information requested for the current cursor position.
 *
 * @param sourceViewer
 *            the source viewer to be configured by this configuration
 * @param doCodeResolve
 *            a boolean which specifies whether code resolve should be used
 *            to compute the JavaScript element
 * @return an information presenter
 *
 */
public IInformationPresenter getImplementationPresenter(final ISourceViewer sourceViewer) {
    InformationPresenter presenter = new InformationPresenter(
            getImplementationPresenterControlCreator(sourceViewer));
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
    presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL);
    IInformationProvider provider = new TypeScriptElementProvider(getEditor());
    presenter.setInformationProvider(provider, IDocument.DEFAULT_CONTENT_TYPE);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVA_DOC);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVA_MULTI_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVASCRIPT_TEMPLATE_LITERAL);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVA_SINGLE_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVA_STRING);
    presenter.setInformationProvider(provider, IJavaScriptPartitions.JAVA_CHARACTER);
    presenter.setSizeConstraints(50, 20, true, false);
    return presenter;
}
项目:JuliaDT    文件:JuliaSourceViewerConfiguration.java   
public IInformationPresenter getHierarchyPresenter(ScriptSourceViewer sourceViewer,
    boolean doCodeResolve) {
  if (getEditor() != null && getEditor().getEditorInput() != null
      && EditorUtility.getEditorInputModelElement(getEditor(), true) == null)
    return null;

  InformationPresenter presenter = new InformationPresenter(
      getHierarchyPresenterControlCreator(sourceViewer));
  presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
  presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL);
  IInformationProvider provider = new ScriptElementProvider(getEditor(), doCodeResolve);
  presenter.setInformationProvider(provider, IDocument.DEFAULT_CONTENT_TYPE);

  presenter.setSizeConstraints(50, 20, true, false);
  return presenter;
}
项目:Eclipse-Postfix-Code-Completion    文件:JavaSourceViewerConfiguration.java   
/**
 * Returns the hierarchy presenter which will determine and shown type hierarchy
 * information requested for the current cursor position.
 *
 * @param sourceViewer the source viewer to be configured by this configuration
 * @param doCodeResolve a boolean which specifies whether code resolve should be used to compute the Java element
 * @return an information presenter
 * @since 3.0
 */
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {

    // Do not create hierarchy presenter if there's no CU.
    if (getEditor() != null && getEditor().getEditorInput() != null && JavaUI.getEditorInputJavaElement(getEditor().getEditorInput()) == null)
        return null;

    InformationPresenter presenter= new InformationPresenter(getHierarchyPresenterControlCreator());
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
    presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL);
    IInformationProvider provider= new JavaElementProvider(getEditor(), doCodeResolve);
    presenter.setInformationProvider(provider, IDocument.DEFAULT_CONTENT_TYPE);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_DOC);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_MULTI_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_SINGLE_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_STRING);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_CHARACTER);
    presenter.setSizeConstraints(50, 20, true, false);
    return presenter;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:JavaSourceViewerConfiguration.java   
/**
 * Returns the hierarchy presenter which will determine and shown type hierarchy
 * information requested for the current cursor position.
 *
 * @param sourceViewer the source viewer to be configured by this configuration
 * @param doCodeResolve a boolean which specifies whether code resolve should be used to compute the Java element
 * @return an information presenter
 * @since 3.0
 */
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {

    // Do not create hierarchy presenter if there's no CU.
    if (getEditor() != null && getEditor().getEditorInput() != null && JavaUI.getEditorInputJavaElement(getEditor().getEditorInput()) == null)
        return null;

    InformationPresenter presenter= new InformationPresenter(getHierarchyPresenterControlCreator());
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
    presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL);
    IInformationProvider provider= new JavaElementProvider(getEditor(), doCodeResolve);
    presenter.setInformationProvider(provider, IDocument.DEFAULT_CONTENT_TYPE);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_DOC);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_MULTI_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_SINGLE_LINE_COMMENT);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_STRING);
    presenter.setInformationProvider(provider, IJavaPartitions.JAVA_CHARACTER);
    presenter.setSizeConstraints(50, 20, true, false);
    return presenter;
}
项目:typescript.java    文件:TypeScriptSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    InformationPresenter presenter= new InformationPresenter(getInformationPresenterControlCreator(sourceViewer));
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));

    // Register information provider
    IInformationProvider provider= new TypeScriptInformationProvider(getEditor());
    String[] contentTypes= getConfiguredContentTypes(sourceViewer);
    for (int i= 0; i < contentTypes.length; i++)
        presenter.setInformationProvider(provider, contentTypes[i]);

    // sizes: see org.eclipse.jface.text.TextViewer.TEXT_HOVER_*_CHARS
    presenter.setSizeConstraints(100, 12, false, true);
    return presenter;
}
项目:APICloud-Studio    文件:CommonSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer)
{
    InformationPresenter presenter = new InformationPresenter(getInformationPresenterControlCreator(sourceViewer));

    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
    presenter.setSizeConstraints(60, 10, true, true);

    return presenter;
}
项目:Eclipse-Postfix-Code-Completion    文件:JavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    InformationPresenter presenter= new InformationPresenter(getInformationPresenterControlCreator(sourceViewer));
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));

    // Register information provider
    IInformationProvider provider= new JavaInformationProvider(getEditor());
    String[] contentTypes= getConfiguredContentTypes(sourceViewer);
    for (int i= 0; i < contentTypes.length; i++)
        presenter.setInformationProvider(provider, contentTypes[i]);

    // sizes: see org.eclipse.jface.text.TextViewer.TEXT_HOVER_*_CHARS
    presenter.setSizeConstraints(100, 12, false, true);
    return presenter;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:JavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    InformationPresenter presenter= new InformationPresenter(getInformationPresenterControlCreator(sourceViewer));
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));

    // Register information provider
    IInformationProvider provider= new JavaInformationProvider(getEditor());
    String[] contentTypes= getConfiguredContentTypes(sourceViewer);
    for (int i= 0; i < contentTypes.length; i++)
        presenter.setInformationProvider(provider, contentTypes[i]);

    // sizes: see org.eclipse.jface.text.TextViewer.TEXT_HOVER_*_CHARS
    presenter.setSizeConstraints(100, 12, false, true);
    return presenter;
}
项目:goclipse    文件:AbstractLangSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    InformationPresenter presenter = new InformationPresenter(getInformationPresenterControlCreator(sourceViewer));
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));

    // Register information providers
    for (String contentType : getConfiguredContentTypes(sourceViewer)) {
        presenter.setInformationProvider(getInformationProvider(contentType, sourceViewer), contentType);
    }

    presenter.setSizeConstraints(100, 12, false, true);
    return presenter;
}
项目:fluentmark    文件:FluentMkSimpleSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return null;
}
项目:fluentmark    文件:FluentMkSimpleSourceViewerConfiguration.java   
@Override
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:fluentmark    文件:FluentMkSimpleSourceViewerConfiguration.java   
@Override
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:fluentmark    文件:FluentMkSourceViewerConfiguration.java   
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:fluentmark    文件:FluentMkSourceViewerConfiguration.java   
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:bts    文件:ReadOnlySourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return null;
}
项目:JuliaDT    文件:JuliaSourceViewerConfiguration.java   
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
  return null;
}
项目:JuliaDT    文件:JuliaSourceViewerConfiguration.java   
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
  return null;
}
项目:KaiZen-OpenAPI-Editor    文件:JsonSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return super.getInformationPresenter(sourceViewer);
}
项目:brainfuck    文件:BfSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(
        ISourceViewer sourceViewer) {
    return new InformationPresenter(getInformationControlCreator(sourceViewer));
}
项目:Eclipse-Postfix-Code-Completion    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return null;
}
项目:Eclipse-Postfix-Code-Completion    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:Eclipse-Postfix-Code-Completion    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return null;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:SimpleJavaSourceViewerConfiguration.java   
@Override
public IInformationPresenter getHierarchyPresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
    return null;
}
项目:eclipse-gn    文件:SimpleGnSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
  return null;
}
项目:eclipse-gn    文件:SimpleGnSourceViewerConfiguration.java   
@Override
public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer, boolean doCodeResolve) {
  return null;
}
项目:goclipse    文件:LangSourceViewer.java   
public void setOutlinePresenter(IInformationPresenter outlinePresenter) {
    this.outlinePresenter = outlinePresenter;
}
项目:goclipse    文件:SimpleSourceViewerConfiguration.java   
@Override
public IInformationPresenter getInformationPresenter(ISourceViewer sourceViewer) {
    return null;
}