Package foodev.jsondiff

Source Code of foodev.jsondiff.GsonDiff

package foodev.jsondiff;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;

import foodev.jsondiff.jsonwrap.gson.GsonWrapper;

public class GsonDiff extends JsonDiff {

  public GsonDiff() {
    super(new GsonWrapper());
  }

  public JsonObject diff(JsonElement from, JsonElement to) throws IllegalArgumentException {
    return (JsonObject) super.diff(from, to);
  }
}
TOP

Related Classes of foodev.jsondiff.GsonDiff

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.