/** * sets the description of the current game * * @param text */ public void setDescription(final CharSequence text) { mBot_txt.setText(text); mTop_txt.setText(text); }
// TODO merge setText and setDescription. private void setText(final CharSequence text) { mTop_txt.setText(text); mBot_txt.setText(text); }