public interface PluginLocator
TagHandlerPlugin, CommandPlugin.| Modifier and Type | Method and Description |
|---|---|
java.util.List<AssetPlugin> |
assetPlugins()
The method retrieves all
AssetPlugins for the BRJS object inputed through the createPlugins function. |
void |
createPlugins(BRJS brjs)
The method creates all available plugins, no matter the type, for the specified
BRJS object. |
java.util.List<CommandPlugin> |
getCommandPlugins()
The method retrieves all
CommandPlugins for the BRJS object inputed through the createPlugins function. |
java.util.List<ContentPlugin> |
getContentPlugins()
The method retrieves all
ContentPlugins for the BRJS object inputed through the createPlugins function. |
java.util.List<MinifierPlugin> |
getMinifierPlugins()
The method retrieves all
MinifierPlugins for the BRJS object inputed through the createPlugins function. |
java.util.List<ModelObserverPlugin> |
getModelObserverPlugins()
The method retrieves all
ModelObserverPlugins for the BRJS object inputed through the createPlugins function. |
java.util.List<RequirePlugin> |
getRequirePlugins()
The method retrieves all
RequirePlugins for the BRJS object inputed through the createPlugins function. |
java.util.List<TagHandlerPlugin> |
getTagHandlerPlugins()
The method retrieves all
TagHandlerPlugins for the BRJS object inputed through the createPlugins function. |
void createPlugins(BRJS brjs)
BRJS object.brjs - a BRJS object for which all available plugins will be createdjava.util.List<CommandPlugin> getCommandPlugins()
CommandPlugins for the BRJS object inputed through the createPlugins function.java.util.List<ModelObserverPlugin> getModelObserverPlugins()
ModelObserverPlugins for the BRJS object inputed through the createPlugins function.java.util.List<ContentPlugin> getContentPlugins()
ContentPlugins for the BRJS object inputed through the createPlugins function.java.util.List<TagHandlerPlugin> getTagHandlerPlugins()
TagHandlerPlugins for the BRJS object inputed through the createPlugins function.java.util.List<AssetPlugin> assetPlugins()
AssetPlugins for the BRJS object inputed through the createPlugins function.java.util.List<MinifierPlugin> getMinifierPlugins()
MinifierPlugins for the BRJS object inputed through the createPlugins function.java.util.List<RequirePlugin> getRequirePlugins()
RequirePlugins for the BRJS object inputed through the createPlugins function.