Package org.erlide.ui.editors.internal.reconciling

Examples of org.erlide.ui.editors.internal.reconciling.ErlReconcilingStrategy


        return editor;
    }

    @Override
    public IReconciler getReconciler(final ISourceViewer sourceViewer) {
        final ErlReconcilingStrategy strategy = new ErlReconcilingStrategy(editor);
        final IErlModule module = editor != null ? editor.getModule() : null;
        final String path = module != null ? module.getFilePath() : null;
        reconciler = new ErlReconciler(strategy, true, true, path, module, getEditor());
        reconciler.setProgressMonitor(new NullProgressMonitor());
        reconciler.setIsAllowedToModifyDocument(false);
View Full Code Here


        return NO_AUTOEDIT;
    }

    @Override
    public IReconciler getReconciler(final ISourceViewer sourceViewer) {
        final ErlReconcilingStrategy strategy = new ErlReconcilingStrategy(null);
        final IErlModule module = null;
        final String path = null;
        final ErlReconciler reconciler = new ErlReconciler(strategy, true, true, path,
                module, null);
        reconciler.setProgressMonitor(new NullProgressMonitor());
View Full Code Here

TOP

Related Classes of org.erlide.ui.editors.internal.reconciling.ErlReconcilingStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.