Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/evant/autodata-parcel
- Owner: evant
- License: apache-2.0
- Created: 2015-04-25T17:07:47.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2020-06-14T22:46:14.000Z (over 4 years ago)
- Last Synced: 2024-11-09T19:24:57.304Z (2 months ago)
- Language: Java
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
}
}
```