Example 1. Simple XML Document With Important SAX Callbacks name George SAX2 callbacks 1. startDocument() 2. startElement() for properties tag 3. characters() for properties tag with whitespace (spaces and CR/LFs) 4. startElement() for property tag 5. characters() for property tag with whitespace 6. startElement() for name tag 7. characters() for name tag with "name" 8. endElement() for name tag 9. startElement() for value tag 10. characters() for value tag with "George" 11. endElement() for value tag 12. endElement() for property tag 13. endElement() for properties tag 14. endDocument()