Package org.apache.wiki.parser
Class PluginContent
java.lang.Object
org.jdom2.Content
org.jdom2.Text
org.apache.wiki.parser.PluginContent
- All Implemented Interfaces:
Serializable,Cloneable,PluginElement,org.jdom2.NamespaceAware
public class PluginContent extends org.jdom2.Text implements PluginElement
Stores the contents of a plugin in a WikiDocument DOM tree.
If the Context.VAR_WYSIWYG_EDITOR_MODE is set to Boolean.TRUE in the context, then the plugin is rendered as WikiMarkup.
This allows an HTML editor to work without rendering the plugin each time as well.
If Context.VAR_EXECUTE_PLUGINS is set to Boolean.FALSE, then the plugin is not executed.
- Since:
- 2.4
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class org.jdom2.Content
org.jdom2.Content.CType -
Field Summary
Fields inherited from class org.jdom2.Text
valueFields inherited from class org.jdom2.Content
ctype, parent -
Constructor Summary
Constructors Constructor Description PluginContent(String pluginName, Map<String,String> parameters)Creates a new DOM element with the given plugin name and a map of parameters. -
Method Summary
Modifier and Type Method Description voidexecuteParse(Context context)Executes the executeParse() method.StringgetParameter(String name)Returns a parameter value from the parameter map.Map<String,String>getParameters()Returns the parameter map given in the constructor.StringgetPluginName()Returns the name of the plugin invoked by the DOM element.StringgetText()The main invocation for the plugin.StringgetValue()Returns the rendered plugin.Stringinvoke(Context context)Performs plugin invocation and return its contents.static PluginContentparsePluginLine(Context context, String commandline, int pos)Parses a plugin invocation and returns a DOM element.Methods inherited from class org.jdom2.Text
append, append, clone, detach, getParent, getTextNormalize, getTextTrim, normalizeString, setParent, setText, toStringMethods inherited from class org.jdom2.Content
equals, getCType, getDocument, getNamespacesInherited, getNamespacesInScope, getNamespacesIntroduced, getParentElement, hashCode
-
Constructor Details
-
PluginContent
Creates a new DOM element with the given plugin name and a map of parameters.- Parameters:
pluginName- The FQN of a plugin.parameters- A Map of parameters.
-
-
Method Details
-
getPluginName
Returns the name of the plugin invoked by the DOM element.- Specified by:
getPluginNamein interfacePluginElement- Returns:
- Name of the plugin
-
getParameter
Returns a parameter value from the parameter map.- Specified by:
getParameterin interfacePluginElement- Parameters:
name- the name of the parameter.- Returns:
- The value from the map, or null, if no such parameter exists.
-
getParameters
Returns the parameter map given in the constructor.- Specified by:
getParametersin interfacePluginElement- Returns:
- The parameter map.
-
getValue
Returns the rendered plugin. Only calls getText().- Specified by:
getValuein interfacePluginElement- Overrides:
getValuein classorg.jdom2.Text- Returns:
- HTML
-
getText
The main invocation for the plugin. When the getText() is called, it invokes the plugin and returns its contents. If there is no Document yet, only returns the plugin name itself.- Specified by:
getTextin interfacePluginElement- Overrides:
getTextin classorg.jdom2.Text- Returns:
- The plugin rendered according to the options set in the WikiContext.
-
invoke
Performs plugin invocation and return its contents.- Specified by:
invokein interfacePluginElement- Parameters:
context- WikiContext in which the plugin is executed. Must NOT be null.- Returns:
- plugin contents.
-
executeParse
Executes the executeParse() method.- Specified by:
executeParsein interfacePluginElement- Parameters:
context- The WikiContext- Throws:
PluginException- If something goes wrong.
-
parsePluginLine
public static PluginContent parsePluginLine(Context context, String commandline, int pos) throws PluginExceptionParses a plugin invocation and returns a DOM element.- Parameters:
context- The WikiContextcommandline- The line to parsepos- The position in the stream parsing.- Returns:
- A DOM element
- Throws:
PluginException- If plugin invocation is faulty- Since:
- 2.10.0
-