Class EditorWorkingCopyReconciler

  • All Implemented Interfaces:
    org.eclipse.jface.text.reconciler.IReconciler

    public abstract class EditorWorkingCopyReconciler
    extends WorkingCopyReconciler
    An abstract base class of a working copy reconciler that is activated on editor activation and forces reconciling on a significant change in the underlying model.
    • Constructor Detail

      • EditorWorkingCopyReconciler

        public EditorWorkingCopyReconciler​(org.eclipse.ui.IEditorPart editor,
                                           IWorkingCopyManager workingCopyManager)
        Creates a new working copy reconciler for the given editor and with the given working copy manager. The working copy manager is used to determine the working copy for the reconciler's document. The reconciler is configured with a single reconciling strategy (by default, a WorkingCopyReconcilingStrategy) that is used irrespective of where a dirty region is located in the reconciler's document.
        Parameters:
        editor - not null
        workingCopyManager - not null
    • Method Detail

      • install

        public void install​(org.eclipse.jface.text.ITextViewer textViewer)

        WorkingCopyReconciler extends this method to register an element change listener that notifies when a change in the underlying model affects the reconciler in some way, and also to register a shell listener that sets the active state of the reconciler when the reconciler's text viewer is activated or deactivated.

        EditorWorkingCopyReconciler extends this method to register a part listener that sets the active state of the reconciler when the reconciler's editor is activated or deactivated.

        Specified by:
        install in interface org.eclipse.jface.text.reconciler.IReconciler
        Overrides:
        install in class WorkingCopyReconciler
      • uninstall

        public void uninstall()
        Specified by:
        uninstall in interface org.eclipse.jface.text.reconciler.IReconciler
        Overrides:
        uninstall in class WorkingCopyReconciler
      • getReconcilerLock

        protected java.lang.Object getReconcilerLock()
        Returns the mutex for this reconciler. See Bug 66176 for a description of the underlying problem.

        This implementation returns the editor object as returned by getEditor().

        Overrides:
        getReconcilerLock in class WorkingCopyReconciler
        Returns:
        the mutex for the reconciler (never null)
      • getEditor

        protected final org.eclipse.ui.IEditorPart getEditor()
        Returns the editor this reconciler is associated with. The association is immutable.
        Returns:
        the reconciler's editor (never null)