org.eclipse.jface.text.reconciler.MonoReconciler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.jface.text Show documentation
Show all versions of org.eclipse.jface.text Show documentation
This is org.eclipse.jface.text jar used by Scout SDK
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.text.reconciler;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.Region;
/**
* Standard implementation of {@link org.eclipse.jface.text.reconciler.IReconciler}.
* The reconciler is configured with a single {@linkplain org.eclipse.jface.text.reconciler.IReconcilingStrategy reconciling strategy}
* that is used independently from where a dirty region is located in the reconciler's
* document.
*
* Usually, clients instantiate this class and configure it before using it.
*
*
* @see org.eclipse.jface.text.IDocumentListener
* @see org.eclipse.jface.text.ITextInputListener
* @see org.eclipse.jface.text.reconciler.DirtyRegion
* @since 2.0
*/
public class MonoReconciler extends AbstractReconciler {
/** The reconciling strategy. */
private IReconcilingStrategy fStrategy;
/**
* Creates a new reconciler that uses the same reconciling strategy to
* reconcile its document independent of the type of the document's contents.
*
* @param strategy the reconciling strategy to be used
* @param isIncremental the indication whether strategy is incremental or not
*/
public MonoReconciler(IReconcilingStrategy strategy, boolean isIncremental) {
Assert.isNotNull(strategy);
fStrategy= strategy;
if (fStrategy instanceof IReconcilingStrategyExtension) {
IReconcilingStrategyExtension extension= (IReconcilingStrategyExtension)fStrategy;
extension.setProgressMonitor(getProgressMonitor());
}
setIsIncrementalReconciler(isIncremental);
}
@Override
public IReconcilingStrategy getReconcilingStrategy(String contentType) {
Assert.isNotNull(contentType);
return fStrategy;
}
@Override
protected void process(DirtyRegion dirtyRegion) {
if(dirtyRegion != null)
fStrategy.reconcile(dirtyRegion, dirtyRegion);
else {
IDocument document= getDocument();
if (document != null)
fStrategy.reconcile(new Region(0, document.getLength()));
}
}
@Override
protected void reconcilerDocumentChanged(IDocument document) {
fStrategy.setDocument(document);
}
@Override
public void setProgressMonitor(IProgressMonitor monitor) {
super.setProgressMonitor(monitor);
if (fStrategy instanceof IReconcilingStrategyExtension) {
IReconcilingStrategyExtension extension= (IReconcilingStrategyExtension) fStrategy;
extension.setProgressMonitor(monitor);
}
}
@Override
protected void initialProcess() {
if (fStrategy instanceof IReconcilingStrategyExtension) {
IReconcilingStrategyExtension extension= (IReconcilingStrategyExtension) fStrategy;
extension.initialReconcile();
}
}
}