GWT Table analog

Hi!

Is there GWT’s FlexTable or HTMLTable analog in Vaadin?
I need some widget with functionality of FlexTable like

  • setWidget(int row, int column, Widget widget)
  • getWidget(int row, int column)
  • some other methods…

Thanks in advance

How about using
GridLayout
or
Table
. Both could do the job for you.

Thanks!
It seems GridLayout can suit me