コード例 #1
0
 public void setText(String newText) {
   setText(new StringCharacterIterator(newText));
 }
コード例 #2
0
ファイル: BreakIterator.java プロジェクト: jshjs11/xi
 /**
  * Sets the new text string to be analyzed, the current position will be reset to the beginning of
  * this new string, and the old string will be lost.
  *
  * @param newText the new text string to be analyzed.
  */
 public void setText(String newText) {
   wrapped.setText(newText);
 }