Class SelectDecorator
- java.lang.Object
-
- org.apache.wiki.htmltowiki.syntax.SelectDecorator
-
public abstract class SelectDecorator extends java.lang.Object
Translates to wiki syntax from aSELECTelement.
-
-
Field Summary
Fields Modifier and Type Field Description protected XHtmlElementToWikiTranslatorchainprotected java.io.PrintWriterout
-
Constructor Summary
Constructors Constructor Description SelectDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddecorate(org.jdom2.Element e)Translates the given XHTML element into wiki markup.protected abstract java.lang.StringmarkupForSelectAttributeClose()Closing wiki markup for aSELECT's attribute.protected abstract java.lang.StringmarkupForSelectAttributeOpen(java.lang.String attr)Opening wiki markup for aSELECT's attribute.protected abstract java.lang.StringmarkupSelectClose()Closing wiki markup for anSELECTelement.protected abstract java.lang.StringmarkupSelectOpen()Opening wiki markup for anSELECTelement.
-
-
-
Field Detail
-
out
protected final java.io.PrintWriter out
-
chain
protected final XHtmlElementToWikiTranslator chain
-
-
Constructor Detail
-
SelectDecorator
public SelectDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain)
-
-
Method Detail
-
decorate
public void decorate(org.jdom2.Element e) throws org.jdom2.JDOMException
Translates the given XHTML element into wiki markup.- Parameters:
e- XHTML element being translated.- Throws:
org.jdom2.JDOMException
-
markupForSelectAttributeOpen
protected abstract java.lang.String markupForSelectAttributeOpen(java.lang.String attr)
Opening wiki markup for aSELECT's attribute.- Parameters:
attr- attribute's name.- Returns:
- Opening wiki markup for a
SELECTelement.
-
markupForSelectAttributeClose
protected abstract java.lang.String markupForSelectAttributeClose()
Closing wiki markup for aSELECT's attribute.- Returns:
- Closing wiki markup for a
SELECTelement.
-
markupSelectOpen
protected abstract java.lang.String markupSelectOpen()
Opening wiki markup for anSELECTelement.- Returns:
- Opening wiki markup for an
SELECTelement.
-
markupSelectClose
protected abstract java.lang.String markupSelectClose()
Closing wiki markup for anSELECTelement.- Returns:
- Closing wiki markup for an
SELECTelement.
-
-