org.enodeframework.infrastructure.MethodInvocation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.infrastructure
import java.lang.invoke.MethodHandle
import java.lang.reflect.Method
interface MethodInvocation {
fun setMethodHandle(methodHandle: MethodHandle)
fun setMethod(method: Method)
fun getMethod(): Method
}