|
|
Home | Loader API | Interfaces | File List | Index | |
Provides an application the notification when a new element has been detected. An element is defined by a start tag, potentially some element content, and an end tag. One example of an element can be: <money> 53 dollars and 35 cents</money>, this method will be called when the parser reaches the "<money>" series of characters. Another example of an element can be: <money currency="us" />, which is an empty element, that is has no element content. This case looks the same as the previous example except that the characters() method (above) is never called. That is for an empty element both the startElement() and endElement() methods are called. All P6SAX2STRING values are ONLY valid during this callback. An application that wants to keep a copy of the string MUST make a copy during this method call.
|