Android Studio / Java Challenge new Candidates
This is an Android Studio project.
It contains a test case for the implementation of a so called Marshaller-Interface.
Its purpose is to marshal any Java Class which supports the given interface into a JSON-Object and back.
- Create a personal account if You have none, its free.
- Use Android Studio
- Do not use Eclipse
public static JSONObject marshalJSON(Object object)
public static boolean unmarshalJSON(Object object, JSONObject json)
- Use Reflection
- Do not use any third party code
- Document both methods