Package com.google.gwt.i18n.shared
Interface HasDirectionEstimator
-
- All Known Implementing Classes:
Anchor,AutoDirectionHandler,CheckBox,DateLabel,DialogBox.CaptionImpl,DirectionalTextHelper,DoubleBox,HTML,Hyperlink,InlineHTML,InlineHyperlink,InlineLabel,IntegerBox,Label,LabelBase,ListBox,LongBox,NumberLabel,PasswordTextBox,RadioButton,TextArea,TextBox,TextBoxBase,ValueBox,ValueBoxBase,ValueLabel
public interface HasDirectionEstimatorInterface for objects that have a direction estimator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectionEstimatorgetDirectionEstimator()Returns theDirectionEstimatorobject.voidsetDirectionEstimator(boolean enabled)Toggles on / off direction estimation.voidsetDirectionEstimator(DirectionEstimator directionEstimator)Sets theDirectionEstimatorobject.
-
-
-
Method Detail
-
getDirectionEstimator
DirectionEstimator getDirectionEstimator()
Returns theDirectionEstimatorobject.
-
setDirectionEstimator
void setDirectionEstimator(boolean enabled)
Toggles on / off direction estimation.- Parameters:
enabled- Whether to enable direction estimation. Iftrue, sets theDirectionEstimatorobject to a defaultDirectionEstimator.
-
setDirectionEstimator
void setDirectionEstimator(DirectionEstimator directionEstimator)
Sets theDirectionEstimatorobject.- Parameters:
directionEstimator- TheDirectionEstimatorto be set.nullmeans turning off direction estimation.
-
-