|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Interface for an observer to register to receive notifications of changes to a text document.
The default implementation of the Document interface (AbstractDocument) supports asynchronous mutations. If this feature is used (i.e. mutations are made from a thread other than the Swing event thread), the listeners will be notified via the mutating thread. This means that if asynchronous updates are made, the implementation of this interface must be threadsafe!
The DocumentEvent notification is based upon the JavaBeans event model. There is no guarantee about the order of delivery to listeners, and all listeners must be notified prior to making further mutations to the Document. This means implementations of the DocumentListener may not mutate the source of the event (i.e. the associated Document).
Document
,
StyledDocument
,
DocumentEvent
Method Summary | |
void |
changedUpdate(DocumentEvent e)
Gives notification that an attribute or set of attributes changed. |
void |
insertUpdate(DocumentEvent e)
Gives notification that there was an insert into the document. |
void |
removeUpdate(DocumentEvent e)
Gives notification that a portion of the document has been removed. |
Method Detail |
public void insertUpdate(DocumentEvent e)
e
- the document eventpublic void removeUpdate(DocumentEvent e)
e
- the document eventpublic void changedUpdate(DocumentEvent e)
e
- the document event
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.