List of usage examples for com.google.gwt.user.client.ui DeckPanel DeckPanel
public DeckPanel()
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; }