Description
I think ParseObject needs to implement Serializable.In a scenario where a developer is building a long list of ParseObject items that are pulled from the internet and displayed on a list view,if serialized it could help mimick offline content on the occasion where the user has no connectivity.That is,the previously serialized list items could be deserialized and populated on the list view when there is no connectivity on the phone.I tried subclassing ParseObject to get this effect but the Problem is that Subclassing ParseObject is forcing me to use a Zero-Argument Constructor and a predefined className which leaves me with the question "What if I want to provide classNames dynamically without predefining with @ParseClassName annotation as done by ParseObject?." Please help.