コード例 #1
0
 public void startRange(int oneBasedLine, int oneBasedColumn) throws SAXException {
   emitter.startElement("m");
 }
コード例 #2
0
 public void newLine() throws SAXException {
   emitter.characters(NEWLINE);
 }
コード例 #3
0
 public void endCharHilite() throws SAXException {
   emitter.endElement("m");
 }
コード例 #4
0
 public void endRange() throws SAXException {
   emitter.endElement("m");
 }
コード例 #5
0
 public void characters(char[] ch, int start, int length) throws SAXException {
   emitter.characters(ch, start, length);
 }