Class CompatiblePlugins


  • public final class CompatiblePlugins
    extends Object
    Class providing methods and information for inter-plugin compatibility. This class may attempt to load some present configuration values. You can avoid this using your plugin's config directly by using the init(plugin,config) method.
    Author:
    crashdemons (crashenator at gmail.com)
    • Method Detail

      • init

        public static void init​(Plugin parentPluginInstance)
        Initialize plugin support classes. This should be done during plugin Enable or afterwards - you may need to add a SoftDepend entry for the plugin to be detected in onEnable.

        Note: it's recommended to call this *after* Compatibility.init so that supported plugin classes have access to other compatibility methods.

        If this method is used, the top level parent plugin config section is used for plugin-support config entries.

        Parameters:
        parentPluginInstance - the plugin requesting compatibility support
      • init

        public static void init​(Plugin parentPluginInstance,
                                ConfigurationSection config)
        Initialize plugin support classes. This should be done during plugin Enable or afterwards - you may need to add a SoftDepend entry for the plugin to be detected in onEnable.

        Note: it's recommended to call this *after* Compatibility.init so that supported plugin classes have access to other compatibility methods.

        Parameters:
        parentPluginInstance - the plugin requesting compatibility support
        config - the configuration section to use for plugin-support entries
      • reloadConfig

        public static void reloadConfig()
        Reloads config for plugin-support modules. Uses the config specified in init().
      • testBlockBreak

        public static boolean testBlockBreak​(Block block,
                                             Player player)
        Test of a simulated block break succeeds (considering all applicable plugin support classes). This method includes exempting fastbreak in NCP before testing.
        Parameters:
        block - the block being broken
        player - the player doing the breaking
        Returns:
        whether the block break succeeded or failed (was cancelled).
      • isReady

        public static boolean isReady()
        Checks whether the plugin compatibility classes are ready for use. (whether the class init completed without exception)
        Returns:
        whether the class is ready