标签: java vaadin
如果我在Vaadin中扩展像Form这样的组件,这两者之间会有什么区别吗?
1. this.getContent().addComponent(); 2. this.addComponent();
答案 0 :(得分:2)
Form类
如果您的意思是Panel.getContent方法,那么这两种方法之间没有区别。
答案 1 :(得分:0)
考虑Window和Panel组件时,this.getContent().addComponent();和this.addComponent();之间没有区别。通过任一调用将组件添加到内容中。但是,在Form中,没有addComponent()等方法。
this.getContent().addComponent();
this.addComponent();
addComponent()