Merge "Fix SuggestedWords.toString"

main
Tadashi G. Takaoka 2012-03-14 03:28:22 -07:00 committed by Android (Google) Code Review
commit b8c471af47
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() + ")";
}
}
}
}