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 HasDirectionEstimator
Interface for objects that have a direction estimator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DirectionEstimator
getDirectionEstimator()
Returns theDirectionEstimator
object.void
setDirectionEstimator(boolean enabled)
Toggles on / off direction estimation.void
setDirectionEstimator(DirectionEstimator directionEstimator)
Sets theDirectionEstimator
object.
-
-
-
Method Detail
-
getDirectionEstimator
DirectionEstimator getDirectionEstimator()
Returns theDirectionEstimator
object.
-
setDirectionEstimator
void setDirectionEstimator(boolean enabled)
Toggles on / off direction estimation.- Parameters:
enabled
- Whether to enable direction estimation. Iftrue
, sets theDirectionEstimator
object to a defaultDirectionEstimator
.
-
setDirectionEstimator
void setDirectionEstimator(DirectionEstimator directionEstimator)
Sets theDirectionEstimator
object.- Parameters:
directionEstimator
- TheDirectionEstimator
to be set.null
means turning off direction estimation.
-
-