mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-04 18:46:24 +02:00
21 lines
533 B
Java
21 lines
533 B
Java
package com.plotsquared.bukkit.chat;
|
|
|
|
import com.google.gson.stream.JsonWriter;
|
|
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* Represents an object that can be serialized to a JSON writer instance.
|
|
*/
|
|
interface JsonRepresentedObject {
|
|
|
|
/**
|
|
* Writes the JSON representation of this object to the specified writer.
|
|
*
|
|
* @param writer The JSON writer which will receive the object.
|
|
* @throws IOException If an error occurs writing to the stream.
|
|
*/
|
|
public void writeJson(JsonWriter writer) throws IOException;
|
|
|
|
}
|