Uses of Interface
org.bukkit.plugin.PluginLoader
Package | Description |
---|---|
org.bukkit.plugin |
Classes specifically relating to loading software modules at runtime.
|
org.bukkit.plugin.java |
Classes for handling
plugins written in
java. |
-
Uses of PluginLoader in org.bukkit.plugin
Methods in org.bukkit.plugin that return PluginLoader Modifier and Type Method Description PluginLoader
Plugin. getPluginLoader()
Gets the associated PluginLoader responsible for this pluginMethod parameters in org.bukkit.plugin with type arguments of type PluginLoader Modifier and Type Method Description void
PluginManager. registerInterface(java.lang.Class<? extends PluginLoader> loader)
Registers the specified plugin loadervoid
SimplePluginManager. registerInterface(java.lang.Class<? extends PluginLoader> loader)
Registers the specified plugin loader -
Uses of PluginLoader in org.bukkit.plugin.java
Classes in org.bukkit.plugin.java that implement PluginLoader Modifier and Type Class Description class
JavaPluginLoader
Represents a Java plugin loader, allowing plugins in the form of .jarMethods in org.bukkit.plugin.java that return PluginLoader Modifier and Type Method Description PluginLoader
JavaPlugin. getPluginLoader()
Gets the associated PluginLoader responsible for this pluginMethods in org.bukkit.plugin.java with parameters of type PluginLoader Modifier and Type Method Description protected void
JavaPlugin. initialize(PluginLoader loader, Server server, PluginDescriptionFile description, java.io.File dataFolder, java.io.File file, java.lang.ClassLoader classLoader)
Deprecated.This method is legacy and will be removed - it must be replaced by the specially provided constructor(s).Constructors in org.bukkit.plugin.java with parameters of type PluginLoader Constructor Description JavaPlugin(PluginLoader loader, Server server, PluginDescriptionFile description, java.io.File dataFolder, java.io.File file)
Deprecated.This method is intended for unit testing purposes when the other constructor cannot be used.