-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75595b0
commit dfc19cd
Showing
4 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package test.zero; | ||
|
||
public abstract class $AutoValue_Test extends Test { | ||
public $AutoValue_Test() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package test.zero; | ||
|
||
import android.os.Parcel; | ||
import android.os.Parcelable; | ||
|
||
import java.lang.ClassLoader; | ||
|
||
final class AutoValue_Test extends $AutoValue_Test { | ||
public static final Parcelable.Creator<AutoValue_Test> CREATOR = new Parcelable.Creator<AutoValue_Test>() { | ||
@Override | ||
public AutoValue_Test createFromParcel(Parcel in) { | ||
return new AutoValue_Test(in); | ||
} | ||
|
||
@Override | ||
public AutoValue_Test[] newArray(int size) { | ||
return new AutoValue_Test[size]; | ||
} | ||
}; | ||
private final static ClassLoader CL = AutoValue_Test.class.getClassLoader(); | ||
|
||
public AutoValue_Test() { | ||
super(); | ||
} | ||
|
||
private AutoValue_Test(Parcel in) { | ||
this(); | ||
} | ||
|
||
@Override | ||
public int describeContents() { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public void writeToParcel(Parcel dest, int flags) { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package test.zero; | ||
|
||
import com.google.auto.value.AutoValue; | ||
import android.os.Parcelable; | ||
|
||
public | ||
@AutoValue | ||
abstract class Test implements Parcelable { | ||
} |