List of usage examples for com.google.gwt.user.client.ui AcceptsOneWidget interface-usage
From source file accelerator.client.view.Shell.java
/** * ??? */ public interface Shell extends IsWidget, AcceptsOneWidget { /**
From source file com.ait.ext4j.client.ui.Viewport.java
/**
* A specialized container representing the viewable application area (the
* browser viewport).
*
* <p>
* The Viewport renders itself to the document body, and automatically sizes
From source file com.ait.toolkit.sencha.ext.client.ui.Viewport.java
/**
* A specialized container representing the viewable application area (the browser viewport).
*
* <p>
* The Viewport renders itself to the document body, and automatically sizes itself to the size of the browser viewport and manages window resizing. There may only be one Viewport
* created in a page.
From source file com.ait.toolkit.sencha.touch.client.ui.ViewPort.java
/**
* Viewport is class instance created when Touch4j is loaded. Because Viewport extends from com.ait.toolkit.sencha.touch.client.core.Container, it has as layout (which defaults to
* CardLayout). This means you can add items to it at any time, from anywhere in your code. The Viewport fullscreen atrribute is true by default, so it will take up your whole
* screen.
*
* Adding a AcceptsOneWidget interface with an empty setWidget overriden method to fake the operation and allow for a pure GWT Activty And Place implementation.
From source file com.devbliss.gwtbliss.client.ui.CustomHTMLPanel.java
/** * TODO: clean up, write test */ public class CustomHTMLPanel extends ComplexPanel implements AcceptsOneWidget { private IsWidget widget = null;
From source file com.emitrom.touch4j.client.ui.ViewPort.java
/**
* Viewport is class instance created when Touch4j is loaded. Because Viewport
* extends from com.emitrom.touch4j.client.core.Container, it has as layout
* (which defaults to CardLayout). This means you can add items to it at any
* time, from anywhere in your code. The Viewport fullscreen atrribute is true
* by default, so it will take up your whole screen.
From source file com.eucalyptus.webui.client.AppWidget.java
public class AppWidget implements AcceptsOneWidget { private HasWidgets.ForIsWidget container; public AppWidget(HasWidgets.ForIsWidget container) { this.container = container;
From source file com.goodow.wave.client.shell.WidgetContainer.java
public class WidgetContainer extends FlowPanel implements AcceptsOneWidget { private Widget previousWidget; private Widget currentWidget; private long toRotateY = 0; private boolean toContainerFront = true; private static final com.goodow.wave.client.shell.WaveShellResources.Style CSS = WaveShellResources.css();;
From source file com.google.gwt.sample.mobilewebapp.client.MobileWebAppShell.java
/** * An interface that describes the UI Shell. */ public interface MobileWebAppShell extends AcceptsOneWidget, IsWidget { /** * Show or hide the Add button, which must post an
From source file com.googlecode.gwtmock.client.MockAcceptsOneWidget.java
public class MockAcceptsOneWidget implements AcceptsOneWidget { protected IsWidget isWidget; @Override public void setWidget(IsWidget isWidget) {