1packageorg.bukkit.event.server; 2 3importorg.bukkit.plugin.Plugin; 4 5/**
6 * Called when a plugin is disabled.
7 */ 8publicclassPluginDisableEventextendsPluginEvent{ 9publicPluginDisableEvent(Pluginplugin){10super(Type.PLUGIN_DISABLE,plugin);11}12}