/**@class android.os.Parcelable.ClassLoaderCreator
 implements android.os.Parcelable.Creator

 Specialization of {@link android.os.Parcelable.Creator} that allows you to receive the
 ClassLoader the object is being created in.
*/
var ClassLoaderCreator = {

/**Create a new instance of the Parcelable class, instantiating it
 from the given Parcel whose data had previously been written by
 {@link android.os.Parcelable#writeToParcel android.os.Parcelable.writeToParcel()} and
 using the given ClassLoader.
@param {Object {Parcel}} source The Parcel to read the object's data from.
@param {Object {ClassLoader}} loader The ClassLoader that this object is being created in.
@return {Object {java.lang.Object}} Returns a new instance of the Parcelable class.
*/
createFromParcel : function(  ) {},


};