Package | Description |
---|---|
com.google.gwt.text.client |
Classes for parsing and rendering numbers, dates, and times.
|
com.google.gwt.text.shared.testing |
Classes used for testing text parsing and rendering.
|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
Modifier and Type | Class and Description |
---|---|
class |
DoubleParser
A localized parser based on
NumberFormat.getDecimalFormat() . |
class |
IntegerParser
A localized parser based on
NumberFormat.getDecimalFormat() . |
class |
LongParser
A localized parser based on
NumberFormat.getDecimalFormat() . |
Modifier and Type | Method and Description |
---|---|
static Parser<java.lang.Long> |
LongParser.instance()
Returns the instance of the no-op renderer.
|
static Parser<java.lang.Integer> |
IntegerParser.instance()
Returns the instance of the no-op renderer.
|
static Parser<java.lang.Double> |
DoubleParser.instance()
Returns the instance of the no-op renderer.
|
Modifier and Type | Class and Description |
---|---|
class |
PassthroughParser
A no-op String parser.
|
Modifier and Type | Method and Description |
---|---|
static Parser<java.lang.String> |
PassthroughParser.instance()
Returns the instance of the no-op renderer.
|
Modifier and Type | Method and Description |
---|---|
static <T> ValueLabel<T> |
ValueLabel.wrap(Element element,
Renderer<? super T> renderer,
Parser<? extends T> parser)
Creates a ValueLabel widget that wraps an existing <span> element.
|
static <T> ValueBox<T> |
ValueBox.wrap(Element element,
Renderer<T> renderer,
Parser<T> parser)
Creates a ValueBox widget that wraps an existing <input type='text'>
element.
|
Constructor and Description |
---|
ValueBox(Element element,
Renderer<T> renderer,
Parser<T> parser)
This constructor may be used by subclasses to explicitly use an existing
element.
|
ValueBoxBase(Element elem,
Renderer<T> renderer,
Parser<T> parser)
Creates a value box that wraps the given browser element handle.
|