Definition at line 47 of file TSAXParser.cxx.
Static Public Member Functions | |
static void | CdataBlock (void *fParser, const xmlChar *value, Int_t len) |
CdataBlock Callback function. | |
static void | Characters (void *fParser, const xmlChar *ch, Int_t len) |
Character callback function. | |
static void | Comment (void *fParser, const xmlChar *value) |
Comment callback function. | |
static void | EndDocument (void *fParser) |
EndDocument callback function. | |
static void | EndElement (void *fParser, const xmlChar *name) |
EndElement callback function, where name is the name of the element. | |
static void | Error (void *fParser, const char *fmt,...) |
Error callback function. | |
static void | FatalError (void *fParser, const char *fmt,...) |
FactalError callback function. | |
static void | StartDocument (void *fParser) |
StartDocument Callback function. | |
static void | StartElement (void *fParser, const xmlChar *name, const xmlChar **p) |
StartElement callback function, where name is the name of the element and p contains the attributes for the start tag. | |
static void | Warning (void *fParser, const char *fmt,...) |
Warning callback function. | |
CdataBlock Callback function.
Definition at line 428 of file TSAXParser.cxx.
Character callback function.
It is called when there are characters that are outside of tags get parsed and the context will be stored in ch, len is the length of ch.
Definition at line 327 of file TSAXParser.cxx.
Comment callback function.
Comment of the xml file will be parsed to value.
Definition at line 345 of file TSAXParser.cxx.
|
static |
EndDocument callback function.
Definition at line 284 of file TSAXParser.cxx.
EndElement callback function, where name is the name of the element.
Definition at line 316 of file TSAXParser.cxx.
|
static |
Error callback function.
Errors while parsing a xml file will be stored at fmt.
Definition at line 375 of file TSAXParser.cxx.
|
static |
FactalError callback function.
Factal errors while parsing a xml file will be stored at fmt.
Definition at line 404 of file TSAXParser.cxx.
|
static |
StartDocument Callback function.
Definition at line 275 of file TSAXParser.cxx.
|
static |
StartElement callback function, where name is the name of the element and p contains the attributes for the start tag.
Definition at line 294 of file TSAXParser.cxx.
|
static |
Warning callback function.
Warnings while parsing a xml file will be stored at fmt.
Definition at line 355 of file TSAXParser.cxx.