Java 类org.eclipse.jface.text.source.IAnnotationHover 实例源码

项目:bts    文件:XtextSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    IAnnotationHover hover = annotationHoverProvider.get();
    if (hover instanceof ISourceViewerAware) {
        ((ISourceViewerAware) hover).setSourceViewer(sourceViewer);
    }
    return hover;
}
项目:APICloud-Studio    文件:CommonLineNumberChangeRulerColumn.java   
public IAnnotationHover getHover() {
    int activeLine= getParentRuler().getLineOfLastMouseButtonActivity();
    if (fRevisionPainter.hasHover(activeLine))
        return fRevisionPainter.getHover();
    if (fDiffPainter.hasHover(activeLine))
        return fDiffPainter.getHover();
    return null;
}
项目:APICloud-Studio    文件:CommonSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer)
{
    return new CommonAnnotationHover(false)
    {
        protected boolean isIncluded(Annotation annotation)
        {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:APICloud-Studio    文件:CommonSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer)
{
    return new CommonAnnotationHover(true)
    {
        protected boolean isIncluded(Annotation annotation)
        {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion    文件:JavaSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(false) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion    文件:JavaSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(true) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion    文件:PropertiesFileSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(false) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion    文件:PropertiesFileSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(true) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:idecore    文件:ApexSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new ApexAnnotationHover() {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:JavaSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(false) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:JavaSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(true) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:PropertiesFileSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(false) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:PropertiesFileSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(true) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:goclipse    文件:AbstractLangSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(false) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInVerticalRuler(annotation);
        }
    };
}
项目:goclipse    文件:AbstractLangSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return new HTMLAnnotationHover(true) {
        @Override
        protected boolean isIncluded(Annotation annotation) {
            return isShowInOverviewRuler(annotation);
        }
    };
}
项目:eclipse-batch-editor    文件:BatchSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return annotationHoover;
}
项目:eclipse-bash-editor    文件:BashSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return annotationHoover;
}
项目:egradle    文件:AbstractGroovySourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return annotationHoover;
}
项目:LibertyEiffel-Eclipse-Plugin    文件:EiffelSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer viewer) {
    return new EiffelAnnotationHOver();
}
项目:DarwinSPL    文件:DwprofileSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HyexpressionSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HyvalidityformulaSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HydatavalueSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HymappingSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HyconstraintsSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:DarwinSPL    文件:HymanifestSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new DefaultAnnotationHover();
}
项目:http4e    文件:HConfiguration.java   
/**
 * @Override
 */
public IAnnotationHover getAnnotationHover( ISourceViewer sourceViewer){
   return new MyAnnotationHover();
}
项目:texlipse    文件:BibSourceViewerConfiguration.java   
/**
 * @return The annotation hover text provider for this editor
 */
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return annotationHover;
}
项目:texlipse    文件:TexSourceViewerConfiguration.java   
/**
 * @return the annotation hover text provider for this editor
 */
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return annotationHover;
}
项目:tlaplus    文件:TLASourceViewerConfiguration.java   
/**
 * Ruler annotation
 */
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer)
{
    return new TLAAnnotationHover();
}
项目:fluentmark    文件:FluentMkSimpleSourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return null;
}
项目:fluentmark    文件:FluentMkSimpleSourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return null;
}
项目:bts    文件:ReadOnlySourceViewerConfiguration.java   
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return null;
}
项目:bts    文件:ReadOnlySourceViewerConfiguration.java   
@Override
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
    return null;
}
项目:bts    文件:DefaultUiModule.java   
public Class<? extends IAnnotationHover> bindIAnnotationHover () {
    return ProblemAnnotationHover.class;        
}
项目:JuliaDT    文件:JuliaSourceViewerConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
  return null;
}
项目:JuliaDT    文件:JuliaSourceViewerConfiguration.java   
public IAnnotationHover getOverviewRulerAnnotationHover(ISourceViewer sourceViewer) {
  return null;
}
项目:velocity-edit    文件:VelocityConfiguration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer aSourceViewer)
{
    return new VelocityAnnotationHover();
}
项目:velocity-edit    文件:Configuration.java   
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
    return new AnnotationHover();
}
项目:vTM-eclipse    文件:TrafficScriptConf.java   
/**
 * Set-up the hover manager (for when the user hovers their mouse over 
 * the margin)
 */
/* Override */
public IAnnotationHover getAnnotationHover( ISourceViewer sourceViewer )
{    
   return new TrafficScriptTextHover( editor );
}