kr.summitsystems.springbukkit.command.annotation.CommandConfigurer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-bukkit-command Show documentation
Show all versions of spring-bukkit-command Show documentation
Springframework based Bukkit plugin development kit.
The newest version!
package kr.summitsystems.springbukkit.command.annotation
import kr.summitsystems.springbukkit.command.CommandFeedbackSource
import kr.summitsystems.springbukkit.command.convert.CommandArgumentConverterAdapterRegistry
import kr.summitsystems.springbukkit.command.convert.CommandArgumentConverterRegistry
interface CommandConfigurer {
fun addArgumentConverter(registry: CommandArgumentConverterRegistry) {}
fun addCommandArgumentCompleterAdapter(registry: CommandArgumentConverterAdapterRegistry) {}
fun getCommandFeedbackSource(): CommandFeedbackSource? { return null }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy