com.airbnb.epoxy.processor.KClassNames.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epoxy-processor Show documentation
Show all versions of epoxy-processor Show documentation
Epoxy is a system for composing complex screens with a ReyclerView in Android.
package com.airbnb.epoxy.processor
import com.squareup.kotlinpoet.ClassName
import com.squareup.kotlinpoet.asClassName
object KClassNames {
// Annotations
val DEPRECATED = Deprecated::class.asClassName()
val KOTLIN_UNIT = ClassName.bestGuess("kotlin.Unit")
}