mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-04-30 22:34:24 +02:00
12 lines
332 B
Java
12 lines
332 B
Java
/*
|
|
* Copyright (c) 2002 JSON.org (now "Public Domain")
|
|
* This is NOT property of REAndroid
|
|
* This package is renamed from org.json.* to avoid class conflict when used on anroid platforms
|
|
*/
|
|
package com.reandroid.json;
|
|
|
|
public interface JSONConvert<T extends JSONItem> {
|
|
public T toJson();
|
|
public void fromJson(T json);
|
|
}
|