Package org.bukkit.craftbukkit.libs.com.google.gson

Examples of org.bukkit.craftbukkit.libs.com.google.gson.GsonBuilder


  public JSONSerializer(Plugin inPlugin, Class<? extends EntityData[]> inDataClass)
  {
    super(inPlugin);
    this.m_dataClass = inDataClass;
    this.m_gson = new GsonBuilder().setPrettyPrinting().registerTypeAdapter(ParameterData.class, new ParameterDataSerializer()).registerTypeAdapter(ParameterData.class, new ParameterDataDeserializer()).create();
  }
View Full Code Here

TOP

Related Classes of org.bukkit.craftbukkit.libs.com.google.gson.GsonBuilder

Copyright © 2018 www.massapicom. 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.