Java 类org.eclipse.jface.text.ITextHoverExtension 实例源码

项目:APICloud-Studio    文件:CommonSourceViewerConfiguration.java   
public IInformationControlCreator getHoverControlCreator()
{
    if (activeTextHover instanceof ITextHoverExtension)
    {
        return ((ITextHoverExtension) activeTextHover).getHoverControlCreator();
    }
    return new IInformationControlCreator()
    {
        public IInformationControl createInformationControl(Shell parent)
        {
            return createTextHoverInformationControl(parent, EditorsUI.getTooltipAffordanceString());
        }
    };
}
项目:Eclipse-Postfix-Code-Completion    文件:BestMatchHover.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
    if (fBestHover instanceof ITextHoverExtension)
        return ((ITextHoverExtension)fBestHover).getHoverControlCreator();

    return null;
}
项目:Eclipse-Postfix-Code-Completion    文件:JavaEditorTextHoverProxy.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
    if (ensureHoverCreated() && (fHover instanceof ITextHoverExtension))
        return ((ITextHoverExtension)fHover).getHoverControlCreator();

    return null;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:BestMatchHover.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
    if (fBestHover instanceof ITextHoverExtension)
        return ((ITextHoverExtension)fBestHover).getHoverControlCreator();

    return null;
}
项目:Eclipse-Postfix-Code-Completion-Juno38    文件:JavaEditorTextHoverProxy.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
    if (ensureHoverCreated() && (fHover instanceof ITextHoverExtension))
        return ((ITextHoverExtension)fHover).getHoverControlCreator();

    return null;
}
项目:Pydev    文件:PyEditorTextHoverProxy.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
    if (ensureHoverCreated() && (fHover instanceof ITextHoverExtension)) {
        return ((ITextHoverExtension) fHover).getHoverControlCreator();
    }

    return null;
}
项目:goclipse    文件:DelegatingDebugTextHover.java   
@Override
public IInformationControlCreator getHoverControlCreator() {
       if (fDelegate instanceof ITextHoverExtension) {
           return ((ITextHoverExtension) fDelegate).getHoverControlCreator();
       }
       return null;
   }
项目:bts    文件:ConfigurableCompletionProposal.java   
public IInformationControlCreator getInformationControlCreator() {
    if (hover!=null && hover instanceof ITextHoverExtension) {
        return ((ITextHoverExtension) hover).getHoverControlCreator();
    }
    return null;
}
项目:bts    文件:AbstractCompositeHover.java   
public IInformationControlCreator getHoverControlCreator() {
    if (currentHover instanceof ITextHoverExtension)
        return ((ITextHoverExtension) currentHover).getHoverControlCreator();
    return null;
}