Interface TypedNode.ParseListener<E extends TypedElement<?,?>>

Enclosing class:
TypedNode<X extends TypedExtension>

public static interface TypedNode.ParseListener<E extends TypedElement<?,?>>
Listener interface which may be registered with the tdom generated parsing code and will be called after each successful parsing step. A point where to register are the different methods called "parse(..)" in the generated elements' classes, and those of the constructors which involve parsing.
(It has been invented to realize the parsing process of xslt templates, which has a certain "meta-flavour" and is realized in Templates.)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    element(E element)
    Callback method, called after an element has been parsed successfully.
    void
    Callback method, called after a piece of character data has been parsed successfully.
  • Method Details

    • element

      void element(E element)
      Callback method, called after an element has been parsed successfully.
    • pcdata

      void pcdata(TypedPCData pcdata)
      Callback method, called after a piece of character data has been parsed successfully.