Back to project page One-Button-App---Android.
The source code is released under:
Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
If you think the Android project One-Button-App---Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.xmlrpc.android; /*from ww w .j a va 2 s .c om*/ import java.io.IOException; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; import org.xmlpull.v1.XmlSerializer; public interface IXMLRPCSerializer { String TAG_NAME = "name"; String TAG_MEMBER = "member"; String TAG_VALUE = "value"; String TAG_DATA = "data"; String TYPE_INT = "int"; String TYPE_I4 = "i4"; String TYPE_I8 = "i8"; String TYPE_DOUBLE = "double"; String TYPE_BOOLEAN = "boolean"; String TYPE_STRING = "string"; String TYPE_DATE_TIME_ISO8601 = "dateTime.iso8601"; String TYPE_BASE64 = "base64"; String TYPE_ARRAY = "array"; String TYPE_STRUCT = "struct"; String DATETIME_FORMAT = "yyyyMMdd'T'HH:mm:ss"; void serialize(XmlSerializer serializer, Object object) throws IOException; Object deserialize(XmlPullParser parser) throws XmlPullParserException, IOException; }