use of org.eclipse.linuxtools.internal.docker.editor.syntax.SyntaxReconcilingStrategy in project linuxtools by eclipse.
the class DockerConfiguration method getReconciler.
@Override
public IReconciler getReconciler(ISourceViewer sourceViewer) {
Reconciler reconciler = new Reconciler();
IReconcilingStrategy strategy = new SyntaxReconcilingStrategy(editor);
reconciler.setReconcilingStrategy(strategy, IDocument.DEFAULT_CONTENT_TYPE);
return reconciler;
}
Aggregations