Package org.eclipse.jface.text.reconciler

Examples of org.eclipse.jface.text.reconciler.IReconcilingStrategyExtension


    }

    public void setProgressMonitor(final IProgressMonitor monitor) {
        fProgressMonitor = monitor;
        if (fStrategy instanceof IReconcilingStrategyExtension) {
            final IReconcilingStrategyExtension extension = (IReconcilingStrategyExtension) fStrategy;
            extension.setProgressMonitor(monitor);
        }
    }
View Full Code Here


     * only once during the life time of the reconciler.
     */
    protected void initialProcess() {
        synchronized (fMutex) {
            if (fStrategy instanceof IReconcilingStrategyExtension) {
                final IReconcilingStrategyExtension extension = (IReconcilingStrategyExtension) fStrategy;
                extension.initialReconcile();
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jface.text.reconciler.IReconcilingStrategyExtension

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.