Home | History | Annotate | Download | only in textservice

Lines Matching refs:TextInfo

26 public final class TextInfo implements Parcelable {
35 public TextInfo(String text) {
42 * @param cookie the cookie for this TextInfo
43 * @param sequence the sequence number for this TextInfo
45 public TextInfo(String text, int cookie, int sequence) {
54 public TextInfo(Parcel source) {
81 * @return the cookie of TextInfo
88 * @return the sequence of TextInfo
97 public static final Parcelable.Creator<TextInfo> CREATOR
98 = new Parcelable.Creator<TextInfo>() {
100 public TextInfo createFromParcel(Parcel source) {
101 return new TextInfo(source);
105 public TextInfo[] newArray(int size) {
106 return new TextInfo[size];