|
遇到的项目
|
方法回调
|
| {文档开始} |
startDocument() |
| <POEM> |
startElement(null,"POEM",null,{Attributes}) |
| "\n" |
characters("<POEM>\n...", 6, 1) |
| <AUTHOR> |
startElement(null,"AUTHOR",null,{Attributes}) |
| "Ogden Nash" |
characters("<POEM>\n...", 15, 10) |
| </AUTHOR> |
endElement(null,"AUTHOR",null) |
| "\n" |
characters("<POEM>\n...", 34, 1) |
| <TITLE> |
startElement(null,"TITLE",null,{Attributes}) |
| "Fleas" |
characters("<POEM>\n...", 42, 5) |
| </TITLE> |
endElement(null,"TITLE",null) |
| "\n" |
characters("<POEM>\n...", 55, 1) |
| <LINE> |
startElement(null,"LINE",null,{Attributes}) |
| "Adam" |
characters("<POEM>\n...", 62, 4) |
| </LINE> |
endElement(null,"LINE",null) |
| "\n" |
characters("<POEM>\n...", 67, 1) |
| </POEM> |
endElement(null,"POEM",null) |
| {文档结束} |
endDocument() |