/**@class android.os.Parcelable.Creator
 Interface that must be implemented and provided as a public CREATOR
 field that generates instances of your Parcelable class from a Parcel.
*/
var Creator = {

/**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()}.
@param {Object {Parcel}} source The Parcel to read the object's data from.
@return {Object {java.lang.Object}} Returns a new instance of the Parcelable class.
*/
createFromParcel : function(  ) {},

/**Create a new array of the Parcelable class.
@param {Number} size Size of the array.
@return {Object {java.lang.Object}} Returns an array of the Parcelable class, with every entry
 initialized to null.
*/
newArray : function(  ) {},


};