From 811b1fb5f4d62a69dfb70104cb36d4d2d07c97da Mon Sep 17 00:00:00 2001 From: Glavo Date: Sat, 13 Sep 2025 19:53:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=20JsonSerializable=20?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=20(#4472)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hmcl/util/gson/JsonSerializable.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonSerializable.java diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonSerializable.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonSerializable.java new file mode 100644 index 000000000..38e2c36ec --- /dev/null +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/gson/JsonSerializable.java @@ -0,0 +1,32 @@ +/* + * Hello Minecraft! Launcher + * Copyright (C) 2025 huangyuhui 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 . + */ +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 { +}