Пример #1
0
 /**
  * Inserts an ArrayList<CharSequence> value into the mapping of this Bundle, replacing any
  * existing value for the given key. Either key or value may be null.
  *
  * @param key a String, or null
  * @param value an ArrayList<CharSequence> object, or null
  */
 @Override
 public void putCharSequenceArrayList(
     @Nullable String key, @Nullable ArrayList<CharSequence> value) {
   super.putCharSequenceArrayList(key, value);
 }