Esempio n. 1
0
  /**
   * Gets the child widget at the specified index.
   *
   * <p>Wrapper function for {@link com.google.gwt.user.client.ui.TabLayoutPanel#getWidget(int)}
   *
   * @param tabIndex the child widget's index
   * @return the child widget
   */
  @SuppressWarnings("unchecked")
  public E getWidget(int tabIndex) {

    return (E) m_tabPanel.getWidget(tabIndex);
  }