org.redmine.ta.internal.json.JsonObjectWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
package org.redmine.ta.internal.json;
import org.json.JSONException;
import org.json.JSONWriter;
/**
* Json object writer.
*
* @author maxkar
*
*/
public interface JsonObjectWriter {
public void write(JSONWriter writer, T object) throws JSONException;
}