Parcelable.java
Go to the documentation of this file.
00001 package android.os;
00002 
00003 
00004 public interface Parcelable {
00005 
00006         public class Creator<T> {
00007 
00008                 public T createFromParcel(Parcel parcel) {
00009                         // TODO Auto-generated method stub
00010                         return null;
00011                 }
00012 
00013                 public T[] newArray(int n) {
00014                         // TODO Auto-generated method stub
00015                         return null;
00016                 }
00017 
00018         }
00019 
00020         void writeToParcel(Parcel parcel, int flags);
00021 
00022         int describeContents();
00023 
00024 }


smarthome_media_kodi_driver
Author(s): Mickael Gaillard , Erwan Le Huitouze
autogenerated on Thu Jun 6 2019 21:03:49