Interface BukkitSuperClassBindingModule
-
@Module public interface BukkitSuperClassBindingModule
Module for binding Bukkit specific classes as interface implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigSystem
bindConfigSystem(BukkitConfigSystem configSystem)
DBSystem
bindDBSystem(BukkitDBSystem dbSystem)
ServerSensor<?>
bindGenericsServerSensor(ServerSensor<org.bukkit.World> sensor)
ListenerSystem
bindListenerSystem(BukkitListenerSystem listenerSystem)
ServerInfo
bindServerInfo(ServerServerInfo serverInfo)
ServerSensor<org.bukkit.World>
bindServerSensor(BukkitSensor sensor)
ServerShutdownSave
bindServerShutdownSave(BukkitServerShutdownSave shutdownSave)
-
-
-
Method Detail
-
bindServerInfo
@Binds ServerInfo bindServerInfo(ServerServerInfo serverInfo)
-
bindDBSystem
@Binds DBSystem bindDBSystem(BukkitDBSystem dbSystem)
-
bindConfigSystem
@Binds ConfigSystem bindConfigSystem(BukkitConfigSystem configSystem)
-
bindListenerSystem
@Binds ListenerSystem bindListenerSystem(BukkitListenerSystem listenerSystem)
-
bindServerShutdownSave
@Binds ServerShutdownSave bindServerShutdownSave(BukkitServerShutdownSave shutdownSave)
-
bindServerSensor
@Binds ServerSensor<org.bukkit.World> bindServerSensor(BukkitSensor sensor)
-
bindGenericsServerSensor
@Binds ServerSensor<?> bindGenericsServerSensor(ServerSensor<org.bukkit.World> sensor)
-
-