Class OptionDecorator
- java.lang.Object
-
- org.apache.wiki.htmltowiki.syntax.OptionDecorator
-
public class OptionDecorator extends java.lang.Object
Translates to wiki syntax from a
OPTION
element.Since this element outputs into the value of a parameter inside the
FormSelect
plugin, there shouldn't be a reason to extend this class when developing a new wiki syntax (although you may do if you want to).
-
-
Field Summary
Fields Modifier and Type Field Description protected XHtmlElementToWikiTranslator
chain
protected java.io.PrintWriter
out
-
Constructor Summary
Constructors Constructor Description OptionDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
decorate(org.jdom2.Element base, org.jdom2.Element e)
Translates the given XHTML element into wiki markup.
-
-
-
Field Detail
-
out
protected final java.io.PrintWriter out
-
chain
protected final XHtmlElementToWikiTranslator chain
-
-
Constructor Detail
-
OptionDecorator
public OptionDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain)
-
-
Method Detail
-
decorate
public void decorate(org.jdom2.Element base, org.jdom2.Element e) throws org.jdom2.JDOMException
Translates the given XHTML element into wiki markup.- Parameters:
base
- the parent of the XHTML element being translated.e
- XHTML element being translated.- Throws:
org.jdom2.JDOMException
-
-