FileDocCategorySizeDatePackage
PlainTextDataHandlerDeserializer.javaAPI DocApache Axis 1.41849Sat Apr 22 18:57:26 BST 2006org.apache.axis.encoding.ser

PlainTextDataHandlerDeserializer

public class PlainTextDataHandlerDeserializer extends JAFDataHandlerDeserializer
text/plain DataHandler Deserializer Modified by Russell Butek

Fields Summary
protected static Log
log
Constructors Summary
Methods Summary
public voidstartElement(java.lang.String namespace, java.lang.String localName, java.lang.String prefix, org.xml.sax.Attributes attributes, org.apache.axis.encoding.DeserializationContext context)


         
                                
                              
          

        super.startElement(namespace, localName, prefix, attributes, context);

        if (getValue() instanceof DataHandler) {
            try {
                DataHandler dh = (DataHandler) getValue();
                setValue(dh.getContent());
            }
            catch (IOException ioe) {
            }
        }