如何检查GWT Panel是否为空?

时间:2012-01-16 04:22:12

标签: gwt

如何检查GWT面板(VerticalPanel,Horizo​​ntalPanel等)是否为空?

我使用了这段代码:

if (contactListPanel.getWidget(0) == null) { 
 // stuff
}

然而,它引发了一个例外:

java.lang.reflect.InvocationTargetException
....
Caused by: java.lang.IndexOutOfBoundsException

1 个答案:

答案 0 :(得分:1)

呃... getWidgetCount()似乎就是你要找的东西。