summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java
blob: 8119984f7ab5e3afbaa2717d936034d8c9cf20f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * GraphicsDocumentHandler.java
 *
 * Created on March 3, 2007, 7:49 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.parser;

import com.kitfox.salamander.parser.SVGParser.SVGParserListener;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;


/**
 *
 * @author kitfox
 */
public class SVGParserHandler implements ContentHandler
{
//    LinkedList<CodeGenNode> nodeStack = new LinkedList<CodeGenNode>();
    
    final SVGParserListener listener;
    
    /** Creates a new instance of GraphicsDocumentHandler */
    public SVGParserHandler(SVGParserListener listener)
    {
        this.listener = listener;
    }
    
    public void setDocumentLocator(Locator locator)
    {
    }
    
    public void startDocument() throws SAXException
    {
    }
    
    public void endDocument() throws SAXException
    {
    }
    
    public void startPrefixMapping(String prefix, String uri) throws SAXException
    {
    }
    
    public void endPrefixMapping(String prefix) throws SAXException
    {
    }
    
    public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException
    {
    }
        
    
    public void endElement(String uri, String localName, String qName) throws SAXException
    {
    }
    
    public void characters(char[] ch, int start, int length) throws SAXException
    {
    }
    
    public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
    {
    }
    
    public void processingInstruction(String target, String data) throws SAXException
    {
    }
    
    public void skippedEntity(String name) throws SAXException
    {
    }
    
}