创建 JsonSerializable 接口 (#4472)

This commit is contained in:
Glavo 2025-09-13 19:53:56 +08:00 committed by GitHub
parent 72ae46c93d
commit 811b1fb5f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,32 @@
/*
* Hello Minecraft! Launcher
* Copyright (C) 2025 huangyuhui <huanghongxun2008@126.com> and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.jackhuang.hmcl.util.gson;
import java.lang.annotation.*;
/// Marks a class as being serialized/deserialized by Gson.
/// This annotation is not retained at runtime and only serves as a reminder to developers not to change field names arbitrarily.
///
/// TODO: Add this annotation to all classes in the HMCL project that need to be serialized/deserialized.
///
/// @author Glavo
@Documented
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface JsonSerializable {
}