Example usage for com.google.gwt.user.client.ui DeckPanel DeckPanel

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

Introduction

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

Prototype

public DeckPanel() 

Source Link

Document

Creates an empty deck panel.

Usage

From source file:org.pentaho.ui.xul.gwt.tags.GwtDeck.java

License:Open Source License

public GwtDeck(Orient orient) {
    super(ELEMENT_NAME);
    container = new DeckPanel();
    setManagedObject(container);
}

From source file:rocket.widget.client.tabpanel.TabPanel.java

License:Apache License

protected DeckPanel createContentPanel() {
    final DeckPanel panel = new DeckPanel();
    panel.setStyleName(getContentPanelStyleName());
    return panel;
}