在一个面板中,我添加了 3 个复合
public class frame {
//Initialization
....
....
public Service service = new Service();
public frame () {
initWidget(getFramePanel());
}
private HorizontalPanel getFramePanel() {
if (hp== null) {
hp= new HorizontalPanel();
hp.setSize("1442px", "750px");
hp.add(getTree());// **are composites**
hp.add(getTable()); // **are composite**
}
return hp;
}
我的理解是这两个都tree
被table
添加到hp
同一个类中,所以我可以使用在这个类中初始化的变量或对象,在这两个组合中
例如: service
对象在课堂frame
上,所以我想知道我是否可以service
在两个组合中使用。
在树和表复合中。如果是,那么如何?
此代码可能不正确,因为我没有复制粘贴代码。