|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Parser | |
---|---|
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. |
Uses of Parser in com.google.gwt.text.client |
---|
Classes in com.google.gwt.text.client that implement Parser | |
---|---|
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() . |
Methods in com.google.gwt.text.client that return Parser | |
---|---|
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. |
Uses of Parser in com.google.gwt.text.shared.testing |
---|
Classes in com.google.gwt.text.shared.testing that implement Parser | |
---|---|
class |
PassthroughParser
A no-op String parser. |
Methods in com.google.gwt.text.shared.testing that return Parser | |
---|---|
static Parser<java.lang.String> |
PassthroughParser.instance()
Returns the instance of the no-op renderer. |
Uses of Parser in com.google.gwt.user.client.ui |
---|
Methods in com.google.gwt.user.client.ui with parameters of type Parser | ||
---|---|---|
static
|
ValueLabel.wrap(Element element,
Renderer<? super T> renderer,
Parser<? extends T> parser)
Creates a ValueLabel widget that wraps an existing <span> element. |
|
static
|
ValueBox.wrap(Element element,
Renderer<T> renderer,
Parser<T> parser)
Creates a ValueBox widget that wraps an existing <input type='text'> element. |
Constructors in com.google.gwt.user.client.ui with parameters of type Parser | |
---|---|
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. |
|
GWT 2.7.0 | |||||||
PREV NEXT | FRAMES NO FRAMES |