From c31602a69e3e03cde5b2362faadefbb0f751d60d Mon Sep 17 00:00:00 2001 From: kitfox Date: Tue, 29 May 2007 21:56:56 +0000 Subject: reverting to original source tree git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@35 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b --- .../kitfox/salamander/parser/SVGParserHandler.java | 80 ---------------------- 1 file changed, 80 deletions(-) delete mode 100755 src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java (limited to 'src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java') diff --git a/src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java b/src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java deleted file mode 100755 index 8119984..0000000 --- a/src/main/java/com/kitfox/salamander/parser/SVGParserHandler.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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 nodeStack = new LinkedList(); - - 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 - { - } - -} -- cgit v1.2.3-55-g7522