Skip to content

Commit

Permalink
Added getter for original text.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamporus committed Jun 17, 2019
1 parent d375052 commit 270c777
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,17 @@ public void setTypedText( @StringRes final int resId )
setTypedText( text );
}

/**
* Get the text to be typed.
*
* @return CharSequence text being/to be typed by the view.
*/
@Override
public CharSequence getText()
{
return mText;
}

/**
* Set text to be typed with the TypeWriter effect.
*
Expand Down

0 comments on commit 270c777

Please sign in to comment.