Uses of Class
org.bukkit.plugin.PluginDescriptionFile
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 PluginDescriptionFile in org.bukkit.plugin
Methods in org.bukkit.plugin that return PluginDescriptionFile Modifier and Type Method Description PluginDescriptionFile
Plugin. getDescription()
Returns the plugin.yaml file containing the details for this pluginPluginDescriptionFile
PluginLoader. getPluginDescription(java.io.File file)
Loads a PluginDescriptionFile from the specified file -
Uses of PluginDescriptionFile in org.bukkit.plugin.java
Methods in org.bukkit.plugin.java that return PluginDescriptionFile Modifier and Type Method Description PluginDescriptionFile
JavaPlugin. getDescription()
Returns the plugin.yaml file containing the details for this pluginPluginDescriptionFile
JavaPluginLoader. getPluginDescription(java.io.File file)
Methods in org.bukkit.plugin.java with parameters of type PluginDescriptionFile 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 PluginDescriptionFile Constructor Description JavaPlugin(JavaPluginLoader loader, PluginDescriptionFile description, java.io.File dataFolder, java.io.File file)
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.