Class ExternalLinkNodePostProcessorState
- java.lang.Object
-
- org.apache.wiki.markdown.extensions.jspwikilinks.postprocessor.ExternalLinkNodePostProcessorState
-
- All Implemented Interfaces:
NodePostProcessorState<JSPWikiLink>
public class ExternalLinkNodePostProcessorState extends java.lang.Object implements NodePostProcessorState<JSPWikiLink>
NodePostProcessorState
which further post processes external links.
-
-
Constructor Summary
Constructors Constructor Description ExternalLinkNodePostProcessorState(Context wikiContext, boolean isImageInlining, java.util.List<org.apache.oro.text.regex.Pattern> inlineImagePatterns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process(com.vladsch.flexmark.util.ast.NodeTracker state, JSPWikiLink link)
performs further processing before rendering.
-
-
-
Constructor Detail
-
ExternalLinkNodePostProcessorState
public ExternalLinkNodePostProcessorState(Context wikiContext, boolean isImageInlining, java.util.List<org.apache.oro.text.regex.Pattern> inlineImagePatterns)
-
-
Method Detail
-
process
public void process(com.vladsch.flexmark.util.ast.NodeTracker state, JSPWikiLink link)
performs further processing before rendering.- Specified by:
process
in interfaceNodePostProcessorState<JSPWikiLink>
- Parameters:
state
- to record node addition/deletionlink
- the specific node in which the post-processing is taking place.- See Also:
NodePostProcessorState.process(NodeTracker, Node)
-
-