Fix SuggestedWords.toString

Change-Id: Ide3f605ce40e8c230f217bbf37ab016457ee91f1
main
Tadashi G. Takaoka 2012-03-14 19:23:15 +09:00
parent 02e70cf999
commit ea51bfd8a8
1 changed files with 14 additions and 1 deletions

View File

@ -16,9 +16,11 @@
package com.android.inputmethod.latin;
import android.text.TextUtils;
import android.view.inputmethod.CompletionInfo;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
@ -71,7 +73,9 @@ public class SuggestedWords {
return "SuggestedWords:"
+ " mTypedWordValid=" + mTypedWordValid
+ " mHasAutoCorrectionCandidate=" + mHasAutoCorrectionCandidate
+ " mIsPunctuationSuggestions=" + mIsPunctuationSuggestions;
+ " mAllowsToBeAutoCorrected=" + mAllowsToBeAutoCorrected
+ " mIsPunctuationSuggestions=" + mIsPunctuationSuggestions
+ " words=" + Arrays.toString(mSuggestedWordInfoList.toArray());
}
public static ArrayList<SuggestedWordInfo> getFromCharSequenceList(
@ -141,5 +145,14 @@ public class SuggestedWords {
public boolean isObsoleteSuggestedWord () {
return mPreviousSuggestedWord;
}
@Override
public String toString() {
if (TextUtils.isEmpty(mDebugString)) {
return mWord.toString();
} else {
return mWord.toString() + " (" + mDebugString.toString() + ")";
}
}
}
}