All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flyjingfish.android_aop_plugin.beans.MatchMethodInfo.kt Maven / Gradle / Ivy

Go to download

Lightweight Aop for Android platform, you deserve it, action is worse than your heartbeat

There is a newer version: 2.2.8
Show newest version
package com.flyjingfish.android_aop_plugin.beans

class MatchMethodInfo {
    lateinit var name: String
    var returnType: String? = null
    var paramTypes: String? = null
    override fun toString(): String {
        return "MatchMethodInfo(name='$name', returnType=$returnType, paramTypes=$paramTypes)"
    }
    fun checkAvailable():Boolean{
        return name.isNotEmpty() && !returnType.isNullOrEmpty() && !paramTypes.isNullOrEmpty()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy