Package | Description |
---|---|
com.google.gwt.dom.client |
Classes for low-level DOM programming.
|
com.google.gwt.i18n.shared |
This package contains i18n classes and interfaces shared between client and
server.
|
com.google.gwt.logging.client |
Log handlers and related classes for java.util.logging support in GWT.
|
com.google.gwt.safehtml.shared |
Shared classes for creating safe HTML content.
|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
Modifier and Type | Method and Description |
---|---|
Element |
DOMImplTrident.createElement(Document doc,
java.lang.String tagName) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
BidiFormatter.spanWrap(java.lang.String str)
Like
BidiFormatter.spanWrap(String, boolean, boolean) , but assumes isHtml is false and dirReset is true. |
SafeHtml |
SafeHtmlBidiFormatter.spanWrap(java.lang.String str,
boolean dirReset) |
java.lang.String |
BidiFormatter.spanWrapWithKnownDir(HasDirection.Direction dir,
java.lang.String str)
Like
BidiFormatter.spanWrapWithKnownDir(com.google.gwt.i18n.client.HasDirection.Direction, String, boolean, boolean) ,
but assumes isHtml is false and dirReset is true. |
SafeHtml |
SafeHtmlBidiFormatter.spanWrapWithKnownDir(HasDirection.Direction dir,
java.lang.String str,
boolean dirReset) |
protected java.lang.String |
BidiFormatterBase.spanWrapWithKnownDirBase(HasDirection.Direction dir,
java.lang.String str,
boolean isHtml,
boolean dirReset) |
Modifier and Type | Method and Description |
---|---|
void |
HasWidgetsLogHandler.publish(java.util.logging.LogRecord record) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
SafeHtmlString.asString()
Returns this object's contained HTML as a string.
|
java.lang.String |
OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml.asString()
Returns this object's contained HTML as a string.
|
static java.lang.String |
SafeHtmlUtils.htmlEscapeAllowEntities(java.lang.String text)
HTML-escapes a string, but does not double-escape HTML-entities already
present in the string.
|
Modifier and Type | Method and Description |
---|---|
void |
StackPanel.add(Widget w,
java.lang.String stackText)
Adds a new child with the given widget and header.
|
void |
StackLayoutPanel.insert(Widget child,
java.lang.String text,
double headerSize,
int beforeIndex)
Inserts a widget into the panel.
|
void |
TabPanel.insert(Widget widget,
java.lang.String tabText,
int beforeIndex)
Inserts a widget into the tab panel.
|
void |
TabLayoutPanel.insert(Widget child,
java.lang.String text,
int beforeIndex)
Inserts a widget into the panel.
|
void |
TabBar.insertTab(java.lang.String text,
int beforeIndex)
Inserts a new tab at the specified index.
|
void |
CaptionPanel.setCaptionText(java.lang.String text)
Sets the caption for the panel using text that will be automatically
escaped.
|
void |
DirectionalTextHelper.setDirection(HasDirection.Direction direction)
Deprecated.
|
void |
DirectionalTextHelper.setDirectionEstimator(DirectionEstimator directionEstimator)
Note: if the element already has non-empty content, this will update
its direction according to the new estimator's result.
|
void |
StackPanel.setStackText(int index,
java.lang.String text)
Sets the text associated with a child by its index.
|
void |
DirectionalTextHelper.setText(java.lang.String content)
Sets the element's content to the given value (plain text).
|
void |
DirectionalTextHelper.setText(java.lang.String content,
HasDirection.Direction dir)
Sets the element's content to the given value (plain text), applying the
given direction.
|
Constructor and Description |
---|
Anchor(java.lang.String text,
DirectionEstimator directionEstimator,
java.lang.String href)
Creates an anchor with its text and href (target URL) specified.
|
Anchor(java.lang.String text,
HasDirection.Direction dir,
java.lang.String href)
Creates an anchor with its text and href (target URL) specified.
|
Anchor(java.lang.String text,
java.lang.String href)
Creates an anchor with its text and href (target URL) specified.
|
Anchor(java.lang.String text,
java.lang.String href,
java.lang.String target)
Creates a source anchor with a frame target.
|
CaptionPanel(java.lang.String captionText)
Constructs a CaptionPanel with specified caption text.
|
HTMLPanel(java.lang.String tag,
java.lang.String html)
Creates an HTML panel whose root element has the given tag, and with the
specified HTML contents.
|
Hyperlink(java.lang.String text,
DirectionEstimator directionEstimator,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
Hyperlink(java.lang.String text,
HasDirection.Direction dir,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
Hyperlink(java.lang.String text,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
InlineHyperlink(java.lang.String text,
DirectionEstimator directionEstimator,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
InlineHyperlink(java.lang.String text,
HasDirection.Direction dir,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
InlineHyperlink(java.lang.String text,
java.lang.String targetHistoryToken)
Creates a hyperlink with its text and target history token specified.
|
MenuItem(java.lang.String text,
MenuBar subMenu)
Constructs a new menu item that cascades to a sub-menu when it is selected.
|
MenuItem(java.lang.String text,
Scheduler.ScheduledCommand cmd)
Constructs a new menu item that fires a command when it is selected.
|