public interface PluginLocator
TagHandlerPlugin
, CommandPlugin
.Modifier and Type | Method and Description |
---|---|
java.util.List<AssetPlugin> |
assetPlugins()
The method retrieves all
AssetPlugin s 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
CommandPlugin s for the BRJS object inputed through the createPlugins function. |
java.util.List<ContentPlugin> |
getContentPlugins()
The method retrieves all
ContentPlugin s for the BRJS object inputed through the createPlugins function. |
java.util.List<MinifierPlugin> |
getMinifierPlugins()
The method retrieves all
MinifierPlugin s for the BRJS object inputed through the createPlugins function. |
java.util.List<ModelObserverPlugin> |
getModelObserverPlugins()
The method retrieves all
ModelObserverPlugin s for the BRJS object inputed through the createPlugins function. |
java.util.List<RequirePlugin> |
getRequirePlugins()
The method retrieves all
RequirePlugin s for the BRJS object inputed through the createPlugins function. |
java.util.List<TagHandlerPlugin> |
getTagHandlerPlugins()
The method retrieves all
TagHandlerPlugin s 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()
CommandPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<ModelObserverPlugin> getModelObserverPlugins()
ModelObserverPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<ContentPlugin> getContentPlugins()
ContentPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<TagHandlerPlugin> getTagHandlerPlugins()
TagHandlerPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<AssetPlugin> assetPlugins()
AssetPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<MinifierPlugin> getMinifierPlugins()
MinifierPlugin
s for the BRJS
object inputed through the createPlugins function.java.util.List<RequirePlugin> getRequirePlugins()
RequirePlugin
s for the BRJS
object inputed through the createPlugins function.