Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LuVoidDbo.java 377B

123456789101112131415161718192021
  1. package com.luticate.utils.dbo;
  2. import org.json.JSONException;
  3. import org.json.JSONObject;
  4. import java.util.HashMap;
  5. /**
  6. * Created by robin on 11/27/15.
  7. */
  8. public class LuVoidDbo extends LuDbo {
  9. @Override
  10. public void fromJson(JSONObject json) throws JSONException {
  11. }
  12. @Override
  13. public HashMap<String, Object> toArray() {
  14. return null;
  15. }
  16. }