什么是“好方法”?订阅 JFormattedTextField 中的值更改?
我想订阅 JFormattedTextField 上的值更改。
检查源代码,我唯一看到的是属性“value”被新值触发。但这个属性只是在那里被引用,并且是直接写的,没有常量。如果我订阅此属性更改,它就会起作用。
但是,我想知道:这是正确的方法吗?
I want to subscribe to value changes on a JFormattedTextField.
Checking the source code, the only thing I see is that the property "value" is fired on a new value. But this property is only referenced there, and directly written, without a constant. If I subscribe to this property change, it works.
However, I'm wondering: is this the correct way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JFormattedTextField 的 JavaDoc状态[:
这说明你使用的方法是正确的
JavaDoc for JFormattedTextField states[:
That means that you are using the correct way