comparison software/mpdl-services/mpiwg-mpdl-lt/src/de/mpg/mpiwg/berlin/mpdl/lt/dict/db/LexEntryContentHandler.java @ 19:4a3641ae14d2

Erstellung
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Wed, 09 Nov 2011 15:32:05 +0100
parents
children
comparison
equal deleted inserted replaced
18:dc5e9fcb3fdc 19:4a3641ae14d2
1 package de.mpg.mpiwg.berlin.mpdl.lt.dict.db;
2
3 import org.xml.sax.*;
4
5 public class LexEntryContentHandler implements ContentHandler {
6
7 public LexEntryContentHandler() {
8 }
9
10 public void startDocument() throws SAXException {
11 }
12
13 public void endDocument() throws SAXException {
14 }
15
16 public void characters(char[] c, int start, int length) throws SAXException {
17 }
18
19 public void ignorableWhitespace(char[] c, int start, int length) throws SAXException {
20 }
21
22 public void processingInstruction(String target, String data) throws SAXException {
23 }
24
25 public void setDocumentLocator(org.xml.sax.Locator arg1) {
26 }
27
28 public void endPrefixMapping(String prefix) throws SAXException {
29 }
30
31 public void skippedEntity(String name) throws SAXException {
32 }
33
34 public void startElement(String uri, String localName, String name, Attributes attrs) throws SAXException {
35 }
36
37 public void endElement(String uri, String localName, String name) throws SAXException {
38 }
39
40 public void startPrefixMapping(String prefix, String uri) throws SAXException {
41 }
42
43 }