Example usage for com.google.gwt.user.client.ui HeaderPanel getContentWidget

List of usage examples for com.google.gwt.user.client.ui HeaderPanel getContentWidget

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui HeaderPanel getContentWidget.

Prototype

public Widget getContentWidget() 

Source Link

Document

Get the content widget that appears between the header and footer.

Usage

From source file:de.uni_koeln.spinfo.maalr.webapp.ui.common.client.PagingDataGrid.java

License:Apache License

public ScrollPanel getScrollPanel() {
    HeaderPanel header = (HeaderPanel) getWidget();
    return (ScrollPanel) header.getContentWidget();
}