检查 SWT/Jface 中数据绑定的值
我正在尝试将我的 SWT UI 绑定到 Java 中的测试模型。绑定有效。但该值正是模型中的值。因此,如果模型是布尔值并且返回 true,则它在 UI 小部件上实际上会显示为“true”,这不是我想向用户展示的内容。有没有办法可以在放入 UI 小部件之前检查绑定值?假设模型返回 true,我检查模型值是否为 true,然后决定在我的标签上显示为“它是正确的”,否则如果为 false,则显示“不,这是错误的”。
同样,如果我有一个标签,并且我想将其绑定到一个返回帐户信用余额值的模型,那么我的标签可能已经有一些文本显示“您的帐户有”,我希望我可以附加THE_BOUND_VALUE 到标签,并且整个标签的值不会被模型的值覆盖。以下是我进行绑定的方法:
IObservableValue tableViewer_myTestObserveSingleSelection = ViewersObservables.observeSingleSelection(tableViewer_myTest);
IObservableList tableViewer_myTestDataContentObserveDetailList = BeansObservables.observeDetailList(tableViewer_myTestObserveSingleSelection, "DataContent", TestModelData.class);
tableViewer_DataContent.setInput(tableViewer_myTestDataContentObserveDetailList);
这些代码是从 eclipse 中的 windowsbuilder pro 生成的,但不知何故,我无法使用任何东西来将绑定值修改为我想要在 UI 上显示的方式。
感谢您的任何帮助。
I am trying to bind my SWT UI to a test model in Java. The binding works. But the value is exactly the value from the model. So in a case if the model is a boolean and it returns true, it will appear literally as "true" on the UI widget, which isn't what I want to show my users. Is there a way where I can check the bound value before putting into the UI widget? Say if the model returns true, I check if the model value was true then decide to show on my label as "It is correct" otherwise "No it is wrong" if false.
Similarly, in a case if I have a label and I want to bind it to a model that returns the value of an account's credit balance, my label may already have some text that says "Your account has " and I wish I could just append THE_BOUND_VALUE to the label and not have the whole label's value overwritten by the model's value. Here's how I do my bindings:
IObservableValue tableViewer_myTestObserveSingleSelection = ViewersObservables.observeSingleSelection(tableViewer_myTest);
IObservableList tableViewer_myTestDataContentObserveDetailList = BeansObservables.observeDetailList(tableViewer_myTestObserveSingleSelection, "DataContent", TestModelData.class);
tableViewer_DataContent.setInput(tableViewer_myTestDataContentObserveDetailList);
These codes are generated from windowsbuilder pro in eclipse but somehow, I cannot use anything to modify the way bound value to the way I want to display on my UI.
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 转换器。看一下此示例。
You can do conversion between types with Converters. Take a look at this example.