56 lines
1.5 KiB
Java
56 lines
1.5 KiB
Java
|
|
package org.bukkit.plugin;
|
|
|
|
import java.io.File;
|
|
import java.util.regex.Pattern;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
/**
|
|
* Represents a plugin loader, which handles direct access to specific types
|
|
* of plugins
|
|
*/
|
|
public interface PluginLoader {
|
|
/**
|
|
* Loads the plugin contained in the specified file
|
|
*
|
|
* @param file File to attempt to load
|
|
* @return Plugin that was contained in the specified file, or null if
|
|
* unsuccessful
|
|
* @throws InvalidPluginException Thrown when the specified file is not a plugin
|
|
*/
|
|
public Plugin loadPlugin(File file) throws InvalidPluginException, InvalidDescriptionException;
|
|
|
|
/**
|
|
* Returns a list of all filename filters expected by this PluginLoader
|
|
*/
|
|
public Pattern[] getPluginFileFilters();
|
|
|
|
/**
|
|
* Calls a player related event with the given details
|
|
*
|
|
* @param registration Registered information on the plugin to call about this event
|
|
* @param type Type of player related event to call
|
|
* @param event Event details
|
|
*/
|
|
public void callEvent(RegisteredListener registration, Event event);
|
|
|
|
/**
|
|
* Enables the specified plugin
|
|
*
|
|
* Attempting to enable a plugin that is already enabled will have no effect
|
|
*
|
|
* @param plugin Plugin to enable
|
|
*/
|
|
public void enablePlugin(Plugin plugin);
|
|
|
|
/**
|
|
* Disables the specified plugin
|
|
*
|
|
* Attempting to disable a plugin that is not enabled will have no effect
|
|
*
|
|
* @param plugin Plugin to disable
|
|
*/
|
|
public void disablePlugin(Plugin plugin);
|
|
}
|