mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
19 lines
458 B
Java
Generated
19 lines
458 B
Java
Generated
// Generated automatically from javax.json.JsonWriter for testing purposes
|
|
|
|
package javax.json;
|
|
|
|
import java.io.Closeable;
|
|
import javax.json.JsonArray;
|
|
import javax.json.JsonObject;
|
|
import javax.json.JsonStructure;
|
|
import javax.json.JsonValue;
|
|
|
|
public interface JsonWriter extends Closeable
|
|
{
|
|
default void write(JsonValue p0){}
|
|
void close();
|
|
void write(JsonStructure p0);
|
|
void writeArray(JsonArray p0);
|
|
void writeObject(JsonObject p0);
|
|
}
|