Android Extensions: Add missing documentation, move the hasCache property to the compiler module

This commit is contained in:
Yan Zhulanow
2017-11-01 15:56:40 +09:00
parent e4f476c09f
commit 3d7222485d
6 changed files with 25 additions and 3 deletions
@@ -16,6 +16,9 @@
package kotlinx.android.parcel
/**
* The property annotated with [IgnoredOnParcel] will not be stored into parcel.
*/
@Target(AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.SOURCE)
annotation class IgnoredOnParcel
@@ -20,6 +20,9 @@ package kotlinx.android.parcel
import android.os.Parcel
import android.os.Parcelable
/**
* The base interface for custom [Parcelize] serializers.
*/
interface Parceler<T> {
/**
* Writes the [T] instance state to the [parcel].