use of org.bndtools.core.editors.BndMarkerQuickAssistProcessor in project bndtools by bndtools.
the class BndSourceViewerConfiguration method getQuickAssistAssistant.
@Override
public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {
QuickAssistAssistant assistant = new QuickAssistAssistant();
assistant.setQuickAssistProcessor(new BndMarkerQuickAssistProcessor());
return assistant;
}
use of org.bndtools.core.editors.BndMarkerQuickAssistProcessor in project bndtools by bndtools.
the class PackageInfoSourceViewerConfiguration method getQuickAssistAssistant.
@Override
public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {
QuickAssistAssistant assistant = new QuickAssistAssistant();
assistant.setQuickAssistProcessor(new BndMarkerQuickAssistProcessor());
return assistant;
}
Aggregations