API Diff Specification
To Version: Android SDK 0.9_r1
From Version: Android SDK m5-rc14
Generated 2008.08.14 15:44

Class android.os.Bundle

Removed Methods
void putSparceParcelableArray(String, SparseArray<Parcelable>) Inserts a SparceArray of Parcelable values into the mapping of this Bundle, replacing any existing value for the given key.
 

Added Methods
int describeContents() Report the nature of this Parcelable's contents
boolean[] getBooleanArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
byte[] getByteArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
char[] getCharArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
double[] getDoubleArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
float[] getFloatArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
int[] getIntArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
ArrayList<Integer> getIntegerArrayList(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
long[] getLongArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
ArrayList<T> getParcelableArrayList(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
short[] getShortArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
String[] getStringArray(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
ArrayList<String> getStringArrayList(String) Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
boolean hasFileDescriptors() Reports whether the bundle contains any parcelled file descriptors.
void putBooleanArray(String, boolean[]) Inserts a boolean array value into the mapping of this Bundle, replacing any existing value for the given key.
void putByteArray(String, byte[]) Inserts a byte array value into the mapping of this Bundle, replacing any existing value for the given key.
void putCharArray(String, char[]) Inserts a char array value into the mapping of this Bundle, replacing any existing value for the given key.
void putDoubleArray(String, double[]) Inserts a double array value into the mapping of this Bundle, replacing any existing value for the given key.
void putFloatArray(String, float[]) Inserts a float array value into the mapping of this Bundle, replacing any existing value for the given key.
void putIntArray(String, int[]) Inserts an int array value into the mapping of this Bundle, replacing any existing value for the given key.
void putIntegerArrayList(String, ArrayList<Integer>) Inserts an ArrayList value into the mapping of this Bundle, replacing any existing value for the given key.
void putLongArray(String, long[]) Inserts a long array value into the mapping of this Bundle, replacing any existing value for the given key.
void putParcelableArrayList(String, ArrayList<Parcelable>) Inserts a List of Parcelable values into the mapping of this Bundle, replacing any existing value for the given key.
void putShortArray(String, short[]) Inserts a short array value into the mapping of this Bundle, replacing any existing value for the given key.
void putSparseParcelableArray(String, SparseArray<Parcelable>) Inserts a SparceArray of Parcelable values into the mapping of this Bundle, replacing any existing value for the given key.
void putStringArray(String, String[]) Inserts a String array value into the mapping of this Bundle, replacing any existing value for the given key.
void putStringArrayList(String, ArrayList<String>) Inserts an ArrayList value into the mapping of this Bundle, replacing any existing value for the given key.
void readFromParcel(Parcel) Reads the Parcel contents into this Bundle, typically in order for it to be passed through an IBinder connection.
 

Changed Methods
Parcelable getParcelable(String) Change in return type from android.os.Parcelable to (T extends android.os.Parcelable).
Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
SparseArray<T> getSparseParcelableArray(String) Change in return type from SparseArray<Parcelable> to SparseArray<T>.
Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.
void writeToParcel(Parcel, int) Change in signature from Parcel to (Parcel, int).
Writes the Bundle contents to a Parcel, typically in order for it to be passed through an IBinder connection.
 

©2008 Google - Code Home - Site Terms of Service - Privacy Policy
Generated by JDiff