Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evant/autodata-parcel

An Android Parcelable extensions to AutoData
https://github.com/evant/autodata-parcel

Last synced: 6 days ago
JSON representation

An Android Parcelable extensions to AutoData

Awesome Lists containing this project

README

        

# AutoDataParcel
An Android Parcelable extensions to [AutoData](https://github.com/evant/autodata)

## Usage
Apply the `@AutoParcel` annotation to your data object or custom annotation, then implement Parcelable.
```java
@AutoData @AutoParcel
public abstract class MyClass implements Parcelable {
public static MyClass create() {
return new AutoData_MyClass();
}
}
```