Package 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.
-
Class Summary Class Description BaseListenerWrapper<T> Deprecated. will be removed in GWT 2.7 with the handler listeners themselvesBaseListenerWrapper.WrapWindowClose BaseListenerWrapper.WrapWindowResize BaseListenerWrapper.WrapWindowScroll CommandExecutor Class which executesCommand
s andIncrementalCommand
s after all currently pending event handlers have completed.Cookies Provides access to browser cookies stored on the client.DeferredCommand Deprecated. Replaced byScheduler.scheduleDeferred()
because the static nature of this API prevents effective mocking for JRE-only tests.DocumentModeAsserter Helper class, which, during startup, asserts that the browser's current rendering mode is one of the values allowed by the "document.compatMode".DOM This class provides a set of static methods that allow you to manipulate the browser's Document Object Model (DOM).Element Deprecated. Event An opaque handle to a native DOM Event.Event.NativePreviewEvent Represents a preview of a nativeEvent
.History This class allows you to interact with the browser's history stack.Random This class can be used as a substitute forRandom
.Timer A simplified, browser-safe timer class.Window This class provides access to the browser window's methods, properties, and events.Window.ClosingEvent Fired just before the browser window closes or navigates to a different site.Window.Location This class provides access to the browser's location's object.Window.Navigator This class provides access to the browser's navigator object.Window.ScrollEvent Fired when the browser window is scrolled. -
Enum Summary Enum Description DocumentModeAsserter.Severity Determine the severity of the runtime $doc.compatMode check: -
Exception Summary Exception Description CommandCanceledException Exception reported to the currentGWT.UncaughtExceptionHandler
when a deferredCommand
is canceled as a result of a slow script warning.IncrementalCommandCanceledException Exception reported to the currentGWT.UncaughtExceptionHandler
when a deferredIncrementalCommand
is canceled as a result of a slow script warning.