com.amrdeveloper.easyadapter.compiler.data.bind.BindExpandableData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyadapter-compiler Show documentation
Show all versions of easyadapter-compiler Show documentation
Android Annotation Processor library to generate adapter class easily from your model with a lot of customization.
The newest version!
package com.amrdeveloper.easyadapter.compiler.data.bind
import com.amrdeveloper.easyadapter.compiler.data.listener.ListenerData
data class BindExpandableData (
val modelClassName: String,
val modelClassPackageName : String,
val layoutId: String,
val bindingDataList: List,
val listeners: Set
)