重写 JTextArea.getDocument.remove()?
好吧,我想重写JTextArea的Document的remove方法,我不知道要扩展哪个类。我无法扩展 Document 因为它是一个接口,这也意味着它不能是 JTextArea 创建的文档。那么我到底如何才能轻松地重写 JTextArea 文档的删除方法呢?
Okay, I want to override JTextArea's Document's remove method, I can't figure out what class to extend. I can't extend Document cause it's a interface, and that also means it must not be the document that JTextArea creates. So how exactly can I easily override my JTextArea's document's remove method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
< 的默认
Document
代码>JTextArea是PlainDocument
,如createDefaultModel()
。下面是一个覆盖insertString 的简单示例
。PlainDocument 中的 ()
The default
Document
of aJTextArea
isPlainDocument
, as mentioned increateDefaultModel()
. Here is a simple example of overridinginsertString()
inPlainDocument
.尝试使用 DocumentFilter 代替。
Try to use DocumentFilter instead.