/**
  * Set the shot method of the showcase - only once or no limit
  *
  * @param shotType either TYPE_ONE_SHOT or TYPE_NO_LIMIT
  * @deprecated Use the option in {@link ConfigOptions} instead.
  */
 @Deprecated
 public void setShotType(int shotType) {
   if (shotType == TYPE_NO_LIMIT || shotType == TYPE_ONE_SHOT) {
     mOptions.shotType = shotType;
   }
 }