add assertPluginPresent to AbstractHook

This commit is contained in:
asofold 2012-07-23 16:10:32 +02:00
parent 40f7057744
commit 53e8b24740
1 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package me.asofold.bukkit.cncp.hooks;
import org.bukkit.Bukkit;
import org.bukkit.event.Listener;
/**
@ -22,5 +23,13 @@ public abstract class AbstractHook implements Hook{
// No listeners (improbable).
return null;
}
/**
* Throw a runtime exception if the plugin is not present.
* @param pluginName
*/
protected void assertPluginPresent(String pluginName){
if (Bukkit.getPluginManager().getPlugin(pluginName) == null) throw new RuntimeException("Assertion, " + getHookName() + ": Plugin " + pluginName + " is not present.");
}
}