Allows to perform an annotation to the node at runtime, storing a integer value. While using xml documents loaded into memory, each node could be processed and annotated with particular information, indexed with a key, that could be retrieved later for faster process. This data annotation doesn't perform any modification to the xml document in any form. It is just a programming support that allows developers to avoid created complex and independent structures to the xml document while developing. While using annotation support, you can use low level functions that provide a simple way to store pointers associated to particular nodes and retrieve them using:
However, additional functions are provided to store and retreive easily integers, strings and double data annotated. See the following:
If you use this function to store an integer data you must use axl_node_annotate_get_int to retreive data stored. You can't use axl_node_annotate_get.
|