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. | |
|
static |
CdataBlock Callback function.
Definition at line 429 of file TSAXParser.cxx.
|
static |
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 328 of file TSAXParser.cxx.
|
static |
Comment callback function.
Comment of the xml file will be parsed to value.
Definition at line 346 of file TSAXParser.cxx.
|
static |
EndDocument callback function.
Definition at line 285 of file TSAXParser.cxx.
|
static |
EndElement callback function, where name is the name of the element.
Definition at line 317 of file TSAXParser.cxx.
|
static |
Error callback function.
Errors while parsing a xml file will be stored at fmt.
Definition at line 376 of file TSAXParser.cxx.
|
static |
FactalError callback function.
Factal errors while parsing a xml file will be stored at fmt.
Definition at line 405 of file TSAXParser.cxx.
|
static |
StartDocument Callback function.
Definition at line 276 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 295 of file TSAXParser.cxx.
|
static |
Warning callback function.
Warnings while parsing a xml file will be stored at fmt.
Definition at line 356 of file TSAXParser.cxx.