Class TextAreaDecorator

java.lang.Object
org.apache.wiki.htmltowiki.syntax.TextAreaDecorator

public abstract class TextAreaDecorator extends Object
Translates to wiki syntax from a TEXTAREA element.
  • Field Details

  • Constructor Details

  • Method Details

    • 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
    • markupForTextAreaAttribute

      protected abstract String markupForTextAreaAttribute(String attr, String value)
      Wiki markup for an TEXTAREA's attribute.
      Parameters:
      attr - attribute's name.
      value - attribute's value.
      Returns:
      Opening wiki markup for an TEXTAREA element.
    • markupTextAreaOpen

      protected abstract String markupTextAreaOpen()
      Opening wiki markup for an TEXTAREA element.
      Returns:
      Opening wiki markup for an TEXTAREA element.
    • markupTextAreaClose

      protected abstract String markupTextAreaClose()
      Closing wiki markup for an INPUT element.
      Returns:
      Closing wiki markup for an INPUT element.