Package com.google.gwt.user.client.ui
Interface HasDirectionalText
-
- All Superinterfaces:
HasText
- All Known Subinterfaces:
HasDirectionalHtml
,HasDirectionalSafeHtml
- All Known Implementing Classes:
Anchor
,CheckBox
,DialogBox.CaptionImpl
,HTML
,Hyperlink
,InlineHTML
,InlineHyperlink
,InlineLabel
,Label
,RadioButton
public interface HasDirectionalText extends HasText
An object that implements this interface contains text that has a direction.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HasDirection.Direction
getTextDirection()
Gets the direction of this object's text.void
setText(java.lang.String text, HasDirection.Direction dir)
Sets this object's text, also declaring its direction.
-
-
-
Method Detail
-
getTextDirection
HasDirection.Direction getTextDirection()
Gets the direction of this object's text.- Returns:
- the direction of this object's text
-
setText
void setText(java.lang.String text, HasDirection.Direction dir)
Sets this object's text, also declaring its direction.- Parameters:
text
- the object's new textdir
- the text's direction
-
-