Class SubDecorator


  • public abstract class SubDecorator
    extends java.lang.Object
    Translates to wiki syntax from a SUB element.
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      void decorate​(org.jdom2.Element e)
      Translates the given XHTML element into wiki markup.
      protected abstract java.lang.String markupSubClose()
      Closing wiki markup for a SUB element.
      protected abstract java.lang.String markupSubOpen()
      Opening wiki markup for a SUB element.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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
      • markupSubOpen

        protected abstract java.lang.String markupSubOpen()
        Opening wiki markup for a SUB element.
        Returns:
        Opening wiki markup for a SUB element.
      • markupSubClose

        protected abstract java.lang.String markupSubClose()
        Closing wiki markup for a SUB element.
        Returns:
        Closing wiki markup for a SUB element.