Package eu.bandm.tools.tdom.runtime
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
"
(It has been invented to realize the parsing process of xslt templates, which has a certain "meta-flavour" and is realized in
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 TypeMethodDescriptionvoid
Callback method, called after an element has been parsed successfully.void
pcdata
(TypedPCData pcdata) Callback method, called after a piece of character data has been parsed successfully.
-
Method Details
-
element
Callback method, called after an element has been parsed successfully. -
pcdata
Callback method, called after a piece of character data has been parsed successfully.
-