Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.eclipse.jface.text
Interface ITextInputListener  view ITextInputListener download ITextInputListener.java

All Known Implementing Classes:
DefaultUndoManager.TextInputListener, PaintManager

public interface ITextInputListener

Text input listeners registered with an ITextViewer are informed if the document serving as the text viewer's model is replaced.

Clients may implement this interface.


Method Summary
 void inputDocumentAboutToBeChanged(IDocument oldInput, IDocument newInput)
          Called before the input document is replaced.
 void inputDocumentChanged(IDocument oldInput, IDocument newInput)
          Called after the input document has been replaced.
 

Method Detail

inputDocumentAboutToBeChanged

public void inputDocumentAboutToBeChanged(IDocument oldInput,
                                          IDocument newInput)
Called before the input document is replaced.


inputDocumentChanged

public void inputDocumentChanged(IDocument oldInput,
                                 IDocument newInput)
Called after the input document has been replaced.