Interface IWemListenerList

    • Method Detail

      • beginDefinitionDescription

        void beginDefinitionDescription()
        This method is used to notify about a definition description. All definition descriptions are contained in definition lists and can contain text, embedded lists or an embedded document.
        See Also:
        endDefinitionDescription()
      • beginDefinitionTerm

        void beginDefinitionTerm()
        A definition term. Definition terms can contain only formatted texts. Note that it is impossible to have an embedded list or a document inside of definition terms.
        See Also:
        endDefinitionTerm()
      • beginList

        void beginList​(WikiParameters params,
                       boolean ordered)
        This method is used to notify about a new list. Each list contain at least one list item. All list items are notified using the beginListItem()/endListItem() method pair. Items of lists of this type can contain the following sequence of elements:
        1. formatted text - the text can be empty; in this case it is not notified
        2. Just after the text the list item can have:
          • an embedded list - in this way it is possible to build hierarchical structures
          • an embedded document - it should be defined explicitly and it can have all valid elements of the top-level document
        Parameters:
        params - parameters of the list
        ordered - if this flag is true then this method corresponds to a new ordered list ("ol"); otherwise this method notifies a beginning of an unordered list ("ul")
        See Also:
        endList(WikiParameters, boolean)
      • beginQuotationLine

        void beginQuotationLine()
        A list containing quotation. This is a part of quotation lists. Each quotation item can have other quotation lists.
        See Also:
        endQuotationLine()
      • endDefinitionDescription

        void endDefinitionDescription()
        This method is used to notify about the end of a definition description.
        See Also:
        beginDefinitionDescription()
      • endDefinitionTerm

        void endDefinitionTerm()
        The end of a definition term.
        See Also:
        beginDefinitionTerm()
      • endList

        void endList​(WikiParameters params,
                     boolean ordered)
        This method is used to notify about the end of a list.
        Parameters:
        params - parameters of the list
        ordered - if this flag is true then this method corresponds to a new ordered list ("ol"); otherwise this method notifies a beginning of an unordered list ("ul")
        See Also:
        beginList(WikiParameters, boolean)
      • endQuotationLine

        void endQuotationLine()
        This method is used to notify about the end of a quotation line.
        See Also:
        endQuotationLine()