Package com.google.gwt.user.client.ui
Class RichTextArea.Justification
- java.lang.Object
-
- com.google.gwt.user.client.ui.RichTextArea.Justification
-
- Enclosing class:
- RichTextArea
public static class RichTextArea.Justification extends java.lang.Object
Justification enumeration. The three values areleft
,right
,center
.
-
-
Field Summary
Fields Modifier and Type Field Description static RichTextArea.Justification
CENTER
Center justification.static RichTextArea.Justification
FULL
Full justification.static RichTextArea.Justification
LEFT
Left justification.static RichTextArea.Justification
RIGHT
Right justification.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
CENTER
public static final RichTextArea.Justification CENTER
Center justification.
-
FULL
public static final RichTextArea.Justification FULL
Full justification.
-
LEFT
public static final RichTextArea.Justification LEFT
Left justification.
-
RIGHT
public static final RichTextArea.Justification RIGHT
Right justification.
-
-