Class TextAreaDecorator
- java.lang.Object
- 
- org.apache.wiki.htmltowiki.syntax.TextAreaDecorator
 
- 
 public abstract class TextAreaDecorator extends java.lang.Object Translates to wiki syntax from aTEXTAREAelement.
- 
- 
Field SummaryFields Modifier and Type Field Description protected XHtmlElementToWikiTranslatorchainprotected java.io.PrintWriterout
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedTextAreaDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain)
 - 
Method SummaryAll 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.StringmarkupForTextAreaAttribute(java.lang.String attr, java.lang.String value)Wiki markup for anTEXTAREA's attribute.protected abstract java.lang.StringmarkupTextAreaClose()Closing wiki markup for anINPUTelement.protected abstract java.lang.StringmarkupTextAreaOpen()Opening wiki markup for anTEXTAREAelement.
 
- 
- 
- 
Field Detail- 
outprotected final java.io.PrintWriter out 
 - 
chainprotected final XHtmlElementToWikiTranslator chain 
 
- 
 - 
Constructor Detail- 
TextAreaDecoratorprotected TextAreaDecorator(java.io.PrintWriter out, XHtmlElementToWikiTranslator chain) 
 
- 
 - 
Method Detail- 
decoratepublic 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
 
 - 
markupForTextAreaAttributeprotected abstract java.lang.String markupForTextAreaAttribute(java.lang.String attr, java.lang.String value) Wiki markup for anTEXTAREA's attribute.- Parameters:
- attr- attribute's name.
- value- attribute's value.
- Returns:
- Opening wiki markup for an TEXTAREAelement.
 
 - 
markupTextAreaOpenprotected abstract java.lang.String markupTextAreaOpen() Opening wiki markup for anTEXTAREAelement.- Returns:
- Opening wiki markup for an TEXTAREAelement.
 
 - 
markupTextAreaCloseprotected abstract java.lang.String markupTextAreaClose() Closing wiki markup for anINPUTelement.- Returns:
- Closing wiki markup for an INPUTelement.
 
 
- 
 
-