1 55 56 package org.jboss.axis.encoding; 57 58 import org.xml.sax.Attributes ; 59 60 import javax.xml.namespace.QName ; 61 import java.io.IOException ; 62 import java.io.Writer ; 63 64 65 71 public class AttributeSerializationContextImpl extends SerializationContextImpl 72 { 73 SerializationContext parent; 74 75 public AttributeSerializationContextImpl(Writer writer, SerializationContext parent) 76 { 77 super(writer); 78 this.parent = parent; 79 } 80 81 public void startElement(QName qName, Attributes attributes) 82 throws IOException 83 { 84 } 86 87 public void endElement() 88 throws IOException 89 { 90 } 92 93 public String qName2String(QName qname) 94 { 95 return parent.qName2String(qname); 96 } 97 98 public void startDocument() throws IOException 99 { 100 } 102 103 public void endDocument() throws IOException 104 { 105 } 107 } 108 | Popular Tags |