public interface DocumentListener extends EventListener
Document接口(AbstractDocument)的默认实现支持异步突变。 如果使用此功能(即,从除Swing事件线程之外的线程进行突变),将通过变更线程通知收听者。 这意味着如果进行异步更新,则该接口的实现必须是线程安全的 !
DocumentEvent通知基于JavaBeans事件模型。 不能保证交付给听众的顺序,并且所有听众必须在进一步突变文档之前通知。 这意味着DocumentListener的实现可能不会突变事件的源(即相关联的文档) 。
Document
, StyledDocument
, DocumentEvent
Modifier and Type | Method and Description |
---|---|
void |
changedUpdate(DocumentEvent e)
发出属性或属性集的更改通知。
|
void |
insertUpdate(DocumentEvent e)
通知文件中插入文件。
|
void |
removeUpdate(DocumentEvent e)
通知文档的一部分已被删除。
|
void insertUpdate(DocumentEvent e)
e
- 文件事件
void removeUpdate(DocumentEvent e)
e
- 文件事件
void changedUpdate(DocumentEvent e)
e
- the document event
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.