Update Parcelize codegen tests

This commit is contained in:
rbares
2020-04-20 19:56:11 +01:00
committed by Yan Zhulanow
parent 00ec50ff73
commit 8a9610d3af
17 changed files with 201 additions and 37 deletions
@@ -11,11 +11,19 @@ class JavaClass {
}
}
//FILE: android/os/Parcel.java
package android.os;
public class Parcel {}
//FILE: android/os/Parcelable.java
package android.os;
public interface Parcelable {
public static interface Creator<T> {}
public static interface Creator<T> {
T createFromParcel(Parcel source);
T[] newArray(int size);
}
}