Skip to content

Commit

Permalink
[lib] Added missing documentation...
Browse files Browse the repository at this point in the history
  • Loading branch information
mta452 committed Mar 31, 2018
1 parent 7bfefa4 commit edd7b12
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ public enum TextAlignment {
*/
CENTER,
/**
* Aligns text to the left side of the line if its paragraph level even.
* Aligns text to the left side of the line if its paragraph level is even.
*/
INTRINSIC,
/**
* Aligns text to the right side of the line if its paragraph level even.
* Aligns text to the right side of the line if its paragraph level is even.
*/
EXTRINSIC,
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,16 @@
* Specifies the vertical content alignment.
*/
public enum VerticalAlignment {
/**
* Aligns the content vertically at the top of the frame.
*/
TOP,
/**
* Aligns the content vertically in the center of the frame.
*/
MIDDLE,
/**
* Aligns the content vertically at the bottom of the frame.
*/
BOTTOM,
}

0 comments on commit edd7b12

Please sign in to comment.