/**@class android.view.textservice.SentenceSuggestionsInfo
 implements android.os.Parcelable

@extends java.lang.Object

 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 android.view.textservice.SuggestionsInfo} which is used for suggestions for a word.
 This class extends the functionality of {@link android.view.textservice.SuggestionsInfo} as far as this class enables
 you to put multiple {@link android.view.textservice.SuggestionsInfo}s on a sentence with the offsets and the lengths
 of all {@link android.view.textservice.SuggestionsInfo}s.
*/
var SentenceSuggestionsInfo = {

/** Used to make this class parcelable.
*/
CREATOR : "null",
/**Used to package this object into a {@link Parcel}.
@param {Object {Parcel}} dest The {@link Parcel} to be written.
@param {Number} flags The flags used for parceling.
*/
writeToParcel : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
@return {Number} the count of {@link SuggestionsInfo}s this instance holds.
*/
getSuggestionsCount : function(  ) {},

/**
@param {Number} i the id of {@link SuggestionsInfo}s this instance holds.
@return {Object {android.view.textservice.SuggestionsInfo}} a {@link SuggestionsInfo} at the specified id
*/
getSuggestionsInfoAt : function(  ) {},

/**
@param {Number} i the id of {@link SuggestionsInfo}s this instance holds
@return {Number} the offset of the specified {@link SuggestionsInfo}
*/
getOffsetAt : function(  ) {},

/**
@param {Number} i the id of {@link SuggestionsInfo}s this instance holds
@return {Number} the length of the specified {@link SuggestionsInfo}
*/
getLengthAt : function(  ) {},


};