com.google.gwt.user.client |
Fundamental user-interface classes used in client-side GWT code.
This package contains classes representing fundamental concepts, such as browser
history, the browser window, DOM manipulation, and event handling. It also
contains convenience classes such as Timer and Random.
|
Java Source File Name | Type | Comment |
Command.java | Interface | Encapsulates an action for later execution, often from a different context.
The Command interface provides a layer of separation between the code
specifying some behavior and the code invoking that behavior. |
CommandCanceledException.java | Class | Exception reported to the current
com.google.gwt.core.client.GWT.UncaughtExceptionHandler when a
deferred
Command is canceled as a result of a slow script warning. |
CommandExecutor.java | Class | Class which executes
Command s and
IncrementalCommand s after
all currently pending event handlers have completed. |
CommandExecutorTest.java | Class | Test cases for
CommandExecutor . |
Cookies.java | Class | Provides access to browser cookies stored on the client. |
CookieTest.java | Class | Test Case for
Cookies . |
DeferredCommand.java | Class | This class allows you to execute code after all currently pending event
handlers have completed, using the
DeferredCommand.addCommand(Command) or
DeferredCommand.addCommand(IncrementalCommand) methods. |
DOM.java | Class | This class provides a set of static methods that allow you to manipulate the
browser's Document Object Model (DOM). |
Element.java | Class | An opaque handle to a native DOM Element. |
Event.java | Class | An opaque handle to a native DOM Event. |
EventListener.java | Interface | Receives low-level browser events. |
EventPreview.java | Interface | A listener interface for previewing browser events. |
History.java | Class | This class allows you to interact with the browser's history stack. |
HistoryListener.java | Interface | Implement this interface to receive notification of changes to the browser
history state. |
HTTPRequest.java | Class | This class allows you to make asynchronous HTTP requests to the originating
server. |
IncrementalCommand.java | Interface | An IncrementalCommand is a command that is broken into one or
more substeps, each substep brings the whole command nearer to completion. |
IncrementalCommandCanceledException.java | Class | Exception reported to the current
com.google.gwt.core.client.GWT.UncaughtExceptionHandler when a
deferred
IncrementalCommand is canceled as a result of a slow script
warning. |
Profile.java | Class | TODO: document me. |
Random.java | Class | This class can be used as a substitute for
java.util.Random . |
RandomTest.java | Class | TODO: document me. |
ResponseTextHandler.java | Interface | Implement this interface to receive HTTP completion events. |
Timer.java | Class | A simplified, browser-safe timer class. |
Window.java | Class | This class provides access to the browser window's methods, properties, and
events. |
WindowCloseListener.java | Interface | Implement this interface to receive closing events from the browser window. |
WindowResizeListener.java | Interface | Implement this interface to receive resize events from the browser window. |
WindowTest.java | Class | Test Case for
Cookies . |