*/
public class TabBarViewGwtImpl extends DetailViewGwtImpl implements TabBarView {
public TabBarViewGwtImpl() {
TabPanel tabPanel = new TabPanel();
tabPanel.add(new BookmarkTabBarButton(), new Label("Bookmark"));
// tabPanel.add(new ContactsTabBarButton(), new Label("Contacts"));
// tabPanel.add(new DownloadsTabBarButton(), new Label("Downloads"));
// tabPanel.add(new FavoritesTabBarButton(), new Label("Favorites"));
// tabPanel.add(new FeaturedTabBarButton(), new Label("Featured"));
tabPanel.add(new HistoryTabBarButton(), new Label("History"));
// tabPanel.add(new MoreTabBarButton(), new Label("More"));
// tabPanel.add(new MostRecentTabBarButton(), new Label("Most Recent"));
// tabPanel.add(new MostViewedTabBarButton(), new Label("Most Viewed"));
tabPanel.add(new SearchTabBarButton(), new Label("Search"));
main.add(tabPanel);
main.remove(scrollPanel);
}