/**
  * Sets the index of the first character of the changed sequence or the beginning of a text
  * selection or the index of the first visible item when scrolling.
  *
  * @param fromIndex The index of the first character or selection start or the first visible item.
  * @throws IllegalStateException If called from an AccessibilityService.
  */
 public void setFromIndex(int fromIndex) {
   IMPL.setFromIndex(mRecord, fromIndex);
 }