|
Eclipse Platform 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DocumentEvent | |
org.eclipse.jface.text | Provides a framework for creating, manipulating, displaying and editing text documents. |
org.eclipse.jface.text.contentassist | Provides a content assist add-on for an ITextViewer. |
org.eclipse.jface.text.presentation | Provides a presentation reconciler add-on for an ITextViewer. |
org.eclipse.jface.text.rules | Provides a framework for rule based text scanning and uses the framework to provide rule-driven default implementations of IPresentationDamager, IPresentationRepairer and IDocumentPartitioner. |
org.eclipse.ui.texteditor | Provides a framework for text editors obeying to the desktop rules. |
Uses of DocumentEvent in org.eclipse.jface.text |
Subclasses of DocumentEvent in org.eclipse.jface.text | |
class |
SlaveDocumentEvent
A slave document event represents a master document event as a slave-relative document event. |
Fields in org.eclipse.jface.text declared as DocumentEvent | |
DocumentEvent |
TextViewer.WidgetCommand.event
|
Methods in org.eclipse.jface.text that return DocumentEvent | |
DocumentEvent |
SlaveDocumentEvent.getMasterEvent()
Returns this event's master event. |
static DocumentEvent |
TextUtilities.mergeUnprocessedDocumentEvents(IDocument unprocessedDocument,
List documentEvents)
Returns a document event which is an accumulation of a list of document events, null if the list of documentEvents is empty. |
static DocumentEvent |
TextUtilities.mergeProcessedDocumentEvents(List documentEvents)
Returns a document event which is an accumulation of a list of document events, null if the list of document events is empty. |
DocumentEvent |
ChildDocument.normalize(DocumentEvent event)
Transforms a document event of the parent document into a child document based document event. |
DocumentEvent |
TextEvent.getDocumentEvent()
Returns the corresponding document event that caused the viewer change |
Methods in org.eclipse.jface.text with parameters of type DocumentEvent | |
void |
IPositionUpdater.update(DocumentEvent event)
Adapts positions to the change specified by the document event. |
protected void |
AbstractDocument.fireDocumentAboutToBeChanged(DocumentEvent event)
Fires the given document event to all registers document listeners informing them about the forthcoming document manipulation. |
protected void |
AbstractDocument.updateDocumentStructures(DocumentEvent event)
Updates document partitioning and document positions according to the specification given by the document event. |
protected void |
AbstractDocument.doFireDocumentChanged(DocumentEvent event)
Notifies all listeners about the given document change. |
protected void |
AbstractDocument.doFireDocumentChanged(DocumentEvent event,
boolean firePartitionChange,
IRegion partitionChange)
Notifies all listeners about the given document change. |
protected void |
AbstractDocument.fireDocumentChanged(DocumentEvent event)
Updates the internal document structures and informs all document listeners if listener notification has been enabled. |
protected void |
AbstractDocument.updatePositions(DocumentEvent event)
Updates all positions of all categories to the change described by the document event. |
void |
ProjectionDocument.parentDocumentAboutToBeChanged(DocumentEvent event)
When called, this projection document is informed about a forthcoming change of its parent document. |
void |
ProjectionDocument.parentDocumentChanged(DocumentEvent event)
When called, this projection document is informed about a change of its parent document. |
protected void |
ProjectionDocument.fireDocumentAboutToBeChanged(DocumentEvent event)
|
protected void |
ProjectionDocument.fireDocumentChanged(DocumentEvent event)
Ignores the given event and sends the semantically equal slave document event instead. |
void |
DefaultPositionUpdater.update(DocumentEvent event)
|
void |
IDocumentListener.documentAboutToBeChanged(DocumentEvent event)
The manipulation described by the document event will be performed. |
void |
IDocumentListener.documentChanged(DocumentEvent event)
The manipulation described by the document event has been performed. |
protected void |
ChildDocumentManager.fireDocumentEvent(boolean about,
DocumentEvent event)
Informs all child documents of the document which issued this document event. |
void |
ChildDocumentManager.documentChanged(DocumentEvent event)
|
void |
ChildDocumentManager.documentAboutToBeChanged(DocumentEvent event)
|
void |
IDocumentPartitioner.documentAboutToBeChanged(DocumentEvent event)
Informs about a forthcoming document change. |
boolean |
IDocumentPartitioner.documentChanged(DocumentEvent event)
The document has been changed. |
void |
TextViewer.WidgetCommand.setEvent(DocumentEvent e)
Translates a document event into the presentation coordinates of this text viewer. |
IRegion |
IDocumentPartitionerExtension.documentChanged2(DocumentEvent event)
The document has been changed. |
protected void |
ProjectionDocumentManager.fireDocumentEvent(boolean about,
DocumentEvent event)
Informs all projection documents of the master document that issued the given document event. |
void |
ProjectionDocumentManager.documentChanged(DocumentEvent event)
|
void |
ProjectionDocumentManager.documentAboutToBeChanged(DocumentEvent event)
|
void |
FragmentUpdater.update(DocumentEvent event)
|
DocumentEvent |
ChildDocument.normalize(DocumentEvent event)
Transforms a document event of the parent document into a child document based document event. |
void |
ChildDocument.parentDocumentAboutToBeChanged(DocumentEvent event)
When called this child document is informed about a forthcoming change of its parent document. |
void |
ChildDocument.parentDocumentChanged(DocumentEvent event)
When called this child document is informed about a change of its parent document. |
protected void |
ChildDocument.fireDocumentAboutToBeChanged(DocumentEvent event)
|
protected void |
ChildDocument.fireDocumentChanged(DocumentEvent event)
Ignores the given event and sends the similar child document event instead. |
boolean |
ChildDocument.isAutoExpandEvent(DocumentEvent event)
Returns whether the given document might cause this document to auto expand. |
Constructors in org.eclipse.jface.text with parameters of type DocumentEvent | |
SlaveDocumentEvent(IDocument doc,
int offset,
int length,
String text,
DocumentEvent masterEvent)
Creates a new slave document event. |
|
TextEvent(int offset,
int length,
String text,
String replacedText,
DocumentEvent event,
boolean viewerRedrawState)
Creates a new TextEvent based on the specification. |
Uses of DocumentEvent in org.eclipse.jface.text.contentassist |
Methods in org.eclipse.jface.text.contentassist with parameters of type DocumentEvent | |
boolean |
ICompletionProposalExtension2.validate(IDocument document,
int offset,
DocumentEvent event)
Requests the proposal to be validated with respect to the document event. |
Uses of DocumentEvent in org.eclipse.jface.text.presentation |
Methods in org.eclipse.jface.text.presentation with parameters of type DocumentEvent | |
IRegion |
IPresentationDamager.getDamageRegion(ITypedRegion partition,
DocumentEvent event,
boolean documentPartitioningChanged)
Returns the damage in the document's presentation caused by the given document change. |
Uses of DocumentEvent in org.eclipse.jface.text.rules |
Methods in org.eclipse.jface.text.rules with parameters of type DocumentEvent | |
IRegion |
DefaultDamagerRepairer.getDamageRegion(ITypedRegion partition,
DocumentEvent e,
boolean documentPartitioningChanged)
|
void |
RuleBasedPartitioner.documentAboutToBeChanged(DocumentEvent e)
Deprecated. |
boolean |
RuleBasedPartitioner.documentChanged(DocumentEvent e)
Deprecated. |
IRegion |
RuleBasedPartitioner.documentChanged2(DocumentEvent e)
Deprecated. |
void |
DefaultPartitioner.documentAboutToBeChanged(DocumentEvent e)
|
boolean |
DefaultPartitioner.documentChanged(DocumentEvent e)
|
IRegion |
DefaultPartitioner.documentChanged2(DocumentEvent e)
|
Uses of DocumentEvent in org.eclipse.ui.texteditor |
Methods in org.eclipse.ui.texteditor with parameters of type DocumentEvent | |
void |
AbstractDocumentProvider.ElementInfo.documentChanged(DocumentEvent event)
|
void |
AbstractDocumentProvider.ElementInfo.documentAboutToBeChanged(DocumentEvent event)
|
|
Eclipse Platform 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |