我正在开发一个 ExtGWT 3.0 (beta) 应用程序。
我有一个包含一个属性的简单 Java bean:
public class MyBean {
private String content;
// getter and setter here...
}
我想将该属性绑定到一个TextField
.
我创建了一个界面:
interface MyBeanProperties extends PropertyAccess<MyBean> {
ValueProvider<MyBean, String> content();
}
但接下来是什么?如何告诉TextField
绑定到特定对象的特定MyBean
属性?