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

kr.summitsystems.springbukkit.command.RegistrableCommandMapping.kt Maven / Gradle / Ivy

The newest version!
package kr.summitsystems.springbukkit.command

import java.lang.reflect.Method

class RegistrableCommandMapping(
    val qualifier: String,
    val controllerInstance: Any,
    val mappingMethod: Method
) {
    fun getSize(): Int {
        return qualifier.split(".").size
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy