FileDocCategorySizeDatePackage
TimeDeserializer.javaAPI DocApache Axis 1.41344Sat Apr 22 18:57:28 BST 2006org.apache.axis.encoding.ser

TimeDeserializer

public class TimeDeserializer extends SimpleDeserializer
The TimeSerializer deserializes a time. Rely on Time of types package
author
Florent Benoit

Fields Summary
Constructors Summary
public TimeDeserializer(Class javaType, QName xmlType)
The Deserializer is constructed with the xmlType and javaType

        super(javaType, xmlType);
    
Methods Summary
public java.lang.ObjectmakeValue(java.lang.String source)
The simple deserializer provides most of the stuff. We just need to override makeValue().

 
        Time t = new Time(source);
        return t.getAsCalendar();