私は3つのクラスA、B、Cを持っていて、BはクラスAにあり、CはクラスBにあるので、C -> B -> AでMy htmlにA $ B $ C.htmlという名前を付けましたが、このエラーが発生しました:
Can not determine Markup. Component is not yet connected to a parent
Markup not found execption: ...
編集 - たとえば、以下のように:
public class A extends WebPage {
public A(){
...
}
private class B extends AbstractColumn<T,String> {
public B(){
...
}
private class C extends Panel{
public C(){
...
}
}
}
}