在我的项目中,我遇到了检票口面板的问题。假设我们有一个扩展 WebPage 的现成页面
public class MyPage extends WebPage {
public MyPage(){
add(new Label("some id","Hello"));
}
}
和扩展面板的面板
public class MyPanel extends Panel{
public MyPanel(){
// here need to add content of MyPage
// for example : inclide(new MyPage())
}
}
如何将我的页面包含到面板中,或者如何将页面内容包含到面板中?