You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }