I am using GWT 2.4. Given com.google.gwt.user.client.ui.Widget, how to get the first child widget? For example, if a Widget represents a <div>
, I would like to know the first thing that is in the <div>
. There is no guarantee that there will be a child widget, but if there is, I would like to know how to get it.
All I know is a general class of objects. I canβt guarantee that it will be a widget like FlowPanel or something else, even if itβs possible.
source share