1 2 3 package org.xmlpull.v1.sax2; 4 5 import org.xml.sax.SAXException ; 6 import org.xml.sax.helpers.AttributesImpl ; 7 8 import org.xmlpull.v1.XmlPullParser; 9 import org.xmlpull.v1.XmlPullParserException; 10 11 17 public class AttributesCachingDriver extends Driver 18 { 19 public AttributesCachingDriver() throws XmlPullParserException { 20 super(); 21 } 22 23 public AttributesCachingDriver(XmlPullParser pp) throws XmlPullParserException { 24 super(pp); 25 } 26 27 33 protected void startElement(String namespace, String localName, String qName) throws SAXException { 34 contentHandler.startElement(namespace, localName, qName, new AttributesImpl (this)); 35 } 36 37 } 38 39 40 41 | Popular Tags |