1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package android.view.textservice;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Arrays;
/**
* This class contains a metadata of suggestions returned from a text service
* (e.g. {@link android.service.textservice.SpellCheckerService}).
* The text service uses this class to return the suggestions
* for a sentence. See {@link SuggestionsInfo} which is used for suggestions for a word.
* This class extends the functionality of {@link SuggestionsInfo} as far as this class enables
* you to put multiple {@link SuggestionsInfo}s on a sentence with the offsets and the lengths
* of all {@link SuggestionsInfo}s.
*/
public final class SentenceSuggestionsInfo implements Parcelable {
private final SuggestionsInfo[] mSuggestionsInfos;
private final int[] mOffsets;
private final int[] mLengths;
/**
* Constructor.
* @param suggestionsInfos from the text service
* @param offsets the array of offsets of suggestions
* @param lengths the array of lengths of suggestions
*/
public SentenceSuggestionsInfo(
SuggestionsInfo[] suggestionsInfos, int[] offsets, int[] lengths) {
if (suggestionsInfos == null || offsets == null || lengths == null) {
throw new NullPointerException();
}
if (suggestionsInfos.length != offsets.length || offsets.length != lengths.length) {
throw new IllegalArgumentException();
}
final int infoSize = suggestionsInfos.length;
mSuggestionsInfos = Arrays.copyOf(suggestionsInfos, infoSize);
mOffsets = Arrays.copyOf(offsets, infoSize);
mLengths = Arrays.copyOf(lengths, infoSize);
}
public SentenceSuggestionsInfo(Parcel source) {
final int infoSize = source.readInt();
mSuggestionsInfos = new SuggestionsInfo[infoSize];
source.readTypedArray(mSuggestionsInfos, SuggestionsInfo.CREATOR);
mOffsets = new int[mSuggestionsInfos.length];
source.readIntArray(mOffsets);
mLengths = new int[mSuggestionsInfos.length];
source.readIntArray(mLengths);
}
/**
* Used to package this object into a {@link Parcel}.
*
* @param dest The {@link Parcel} to be written.
* @param flags The flags used for parceling.
*/
@Override
public void writeToParcel(Parcel dest, int flags) {
final int infoSize = mSuggestionsInfos.length;
dest.writeInt(infoSize);
dest.writeTypedArray(mSuggestionsInfos, 0);
dest.writeIntArray(mOffsets);
dest.writeIntArray(mLengths);
}
@Override
public int describeContents() {
return 0;
}
/**
* @return the count of {@link SuggestionsInfo}s this instance holds.
*/
public int getSuggestionsCount() {
return mSuggestionsInfos.length;
}
/**
* @param i the id of {@link SuggestionsInfo}s this instance holds.
* @return a {@link SuggestionsInfo} at the specified id
*/
public SuggestionsInfo getSuggestionsInfoAt(int i) {
if (i >= 0 && i < mSuggestionsInfos.length) {
return mSuggestionsInfos[i];
}
return null;
}
/**
* @param i the id of {@link SuggestionsInfo}s this instance holds
* @return the offset of the specified {@link SuggestionsInfo}
*/
public int getOffsetAt(int i) {
if (i >= 0 && i < mOffsets.length) {
return mOffsets[i];
}
return -1;
}
/**
* @param i the id of {@link SuggestionsInfo}s this instance holds
* @return the length of the specified {@link SuggestionsInfo}
*/
public int getLengthAt(int i) {
if (i >= 0 && i < mLengths.length) {
return mLengths[i];
}
return -1;
}
/**
* Used to make this class parcelable.
*/
public static final @android.annotation.NonNull Parcelable.Creator<SentenceSuggestionsInfo> CREATOR
= new Parcelable.Creator<SentenceSuggestionsInfo>() {
@Override
public SentenceSuggestionsInfo createFromParcel(Parcel source) {
return new SentenceSuggestionsInfo(source);
}
@Override
public SentenceSuggestionsInfo[] newArray(int size) {
return new SentenceSuggestionsInfo[size];
}
};
}
|