Uses of Interface
com.google.gwt.text.shared.Parser
-
Packages that use Parser 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. -
-
Uses of Parser in com.google.gwt.text.client
Classes in com.google.gwt.text.client that implement Parser Modifier and Type Class Description class
DoubleParser
A localized parser based onNumberFormat.getDecimalFormat()
.class
IntegerParser
A localized parser based onNumberFormat.getDecimalFormat()
.class
LongParser
A localized parser based onNumberFormat.getDecimalFormat()
.Methods in com.google.gwt.text.client that return Parser Modifier and Type Method Description static Parser<java.lang.Double>
DoubleParser. 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.Long>
LongParser. 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 Modifier and Type Class Description class
PassthroughParser
A no-op String parser.Methods in com.google.gwt.text.shared.testing that return Parser Modifier and Type Method Description 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 Modifier and Type Method Description 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.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.Constructors in com.google.gwt.user.client.ui with parameters of type Parser Constructor 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.
-