本文整理汇总了Java中org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter类的典型用法代码示例。如果您正苦于以下问题:Java IInformationPresenter类的具体用法?Java IInformationPresenter怎么用?Java IInformationPresenter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IInformationPresenter类属于org.eclipse.jface.text.DefaultInformationControl包,在下文中一共展示了IInformationPresenter类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TooltipInformationControlCreator
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public TooltipInformationControlCreator(IInformationPresenter presenter) {
if (presenter == null) {
presenter = new AbstractTooltipInformationPresenter() {
@Override
protected void onUpdatePresentation(String hoverInfo, TextPresentation presentation) {
}
@Override
protected void onHandleClick(Object data) {
}
};
}
this.presenter = presenter;
}
示例2: DwprofileQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public DwprofileQuickAssistAssistant(de.darwinspl.preferences.resource.dwprofile.IDwprofileResourceProvider resourceProvider, de.darwinspl.preferences.resource.dwprofile.ui.IDwprofileAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new de.darwinspl.preferences.resource.dwprofile.ui.DwprofileQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例3: HyexpressionQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HyexpressionQuickAssistAssistant(eu.hyvar.feature.expression.resource.hyexpression.IHyexpressionResourceProvider resourceProvider, eu.hyvar.feature.expression.resource.hyexpression.ui.IHyexpressionAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.feature.expression.resource.hyexpression.ui.HyexpressionQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例4: HyvalidityformulaQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HyvalidityformulaQuickAssistAssistant(eu.hyvar.context.contextValidity.resource.hyvalidityformula.IHyvalidityformulaResourceProvider resourceProvider, eu.hyvar.context.contextValidity.resource.hyvalidityformula.ui.IHyvalidityformulaAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.context.contextValidity.resource.hyvalidityformula.ui.HyvalidityformulaQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例5: HydatavalueQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HydatavalueQuickAssistAssistant(eu.hyvar.dataValues.resource.hydatavalue.IHydatavalueResourceProvider resourceProvider, eu.hyvar.dataValues.resource.hydatavalue.ui.IHydatavalueAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.dataValues.resource.hydatavalue.ui.HydatavalueQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例6: HymappingQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HymappingQuickAssistAssistant(eu.hyvar.feature.mapping.resource.hymapping.IHymappingResourceProvider resourceProvider, eu.hyvar.feature.mapping.resource.hymapping.ui.IHymappingAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.feature.mapping.resource.hymapping.ui.HymappingQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例7: HyconstraintsQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HyconstraintsQuickAssistAssistant(eu.hyvar.feature.constraint.resource.hyconstraints.IHyconstraintsResourceProvider resourceProvider, eu.hyvar.feature.constraint.resource.hyconstraints.ui.IHyconstraintsAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.feature.constraint.resource.hyconstraints.ui.HyconstraintsQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例8: HymanifestQuickAssistAssistant
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public HymanifestQuickAssistAssistant(eu.hyvar.mspl.manifest.resource.hymanifest.IHymanifestResourceProvider resourceProvider, eu.hyvar.mspl.manifest.resource.hymanifest.ui.IHymanifestAnnotationModelProvider annotationModelProvider) {
setQuickAssistProcessor(new eu.hyvar.mspl.manifest.resource.hymanifest.ui.HymanifestQuickAssistProcessor(resourceProvider, annotationModelProvider));
setInformationControlCreator(new AbstractReusableInformationControlCreator() {
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
});
}
示例9: createInformationControlCreator
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
protected AbstractReusableInformationControlCreator createInformationControlCreator() {
return new AbstractReusableInformationControlCreator() {
@Override
public IInformationControl doCreateInformationControl(Shell parent) {
return new DefaultInformationControl(parent, (IInformationPresenter) null);
}
};
}
示例10: InformationPresenterControlManager2
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public InformationPresenterControlManager2(IInformationPresenter presenter) {
super(new InformationPresenterHelpers.TooltipInformationControlCreator(presenter));
if (presenter instanceof IInformationPresenterAsTooltip) {
IInformationPresenterAsTooltip presenterAsTooltip = (IInformationPresenterAsTooltip) presenter;
presenterAsTooltip.setInformationPresenterControlManager(this);
}
}
示例11: InformationPresenterControlManager
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
/**
* @param tooltipAffordanceString if null, a default is given.
*/
public InformationPresenterControlManager(IInformationPresenter presenter, String tooltipAffordanceString) {
super(new InformationPresenterHelpers.TooltipInformationControlCreator(presenter));
this.tooltipAffordanceString = tooltipAffordanceString;
if (presenter instanceof IInformationPresenterAsTooltip) {
IInformationPresenterAsTooltip presenterAsTooltip = (IInformationPresenterAsTooltip) presenter;
presenterAsTooltip.setInformationPresenterControlManager(this);
}
setCloser(new Closer());
takesFocusWhenVisible(true);
((InformationPresenterHelpers.TooltipInformationControlCreator) this.fInformationControlCreator)
.setInformationPresenterControlManager(this);
}
示例12: NCLInformationControl
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public NCLInformationControl(Shell parent, String statusFieldText,
IInformationPresenter presenter) {
super(parent, statusFieldText);
fAdditionalTextStyles = SWT.NONE;
create();
}
示例13: PyInformationControl
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public PyInformationControl(Shell parent, String statusFieldText, IInformationPresenter presenter) {
super(parent, statusFieldText, presenter);
}
示例14: ToolTipPresenterHandler
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
public ToolTipPresenterHandler(Shell parent, IInformationPresenter presenter) {
this(parent, presenter, null);
}
示例15: InformationControl
import org.eclipse.jface.text.DefaultInformationControl.IInformationPresenter; //导入依赖的package包/类
/**
* Creates a default information control with the given shell as parent. The given
* information presenter is used to process the information to be displayed. The given
* styles are applied to the created styled text widget.
*
* @param parent the parent shell
* @param shellStyle the additional styles for the shell
* @param style the additional styles for the styled text widget
* @param presenter the presenter to be used
*/
public InformationControl(Shell parent, int shellStyle, int style, IInformationPresenter presenter) {
this(parent, shellStyle, style, presenter, null);
}