1 16 17 18 package org.apache.axis.encoding; 19 20 import org.apache.axis.wsdl.fromJava.Types; 21 import org.w3c.dom.Element ; 22 import org.xml.sax.Attributes ; 23 24 import javax.xml.namespace.QName ; 25 import java.io.IOException ; 26 27 39 public interface Serializer extends javax.xml.rpc.encoding.Serializer { 40 48 public void serialize(QName name, Attributes attributes, 49 Object value, SerializationContext context) 50 throws IOException ; 51 52 63 public Element writeSchema(Class javaType, Types types) throws Exception ; 64 } 65 66 67 | Popular Tags |