com.flyjingfish.android_aop_plugin.beans.AopCollectClass.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-aop-plugin Show documentation
Show all versions of android-aop-plugin Show documentation
Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat
package com.flyjingfish.android_aop_plugin.beans
data class AopCollectClass(
val collectClassName: String,
val invokeClassName: String,
val invokeMethod: String,
val collectExtendsClassName: String,
val isClazz:Boolean,
val regex:String,
val collectType : String
){
fun getKey():String{
return collectClassName+invokeClassName+invokeMethod+collectExtendsClassName+isClazz+regex+collectType
}
}