use of com.reprezen.swagedit.core.assist.JsonQuickAssistProcessor in project KaiZen-OpenAPI-Editor by RepreZen.
the class JsonSourceViewerConfiguration method getQuickAssistAssistant.
@Override
public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {
QuickAssistAssistant assistant = new QuickAssistAssistant();
assistant.setQuickAssistProcessor(new JsonQuickAssistProcessor(new QuickFixer()));
assistant.setInformationControlCreator(getInformationControlCreator(sourceViewer));
return assistant;
}
Aggregations