mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-09-24 03:33:46 -04:00
创建 JsonSerializable 接口 (#4472)
This commit is contained in:
parent
72ae46c93d
commit
811b1fb5f4
@ -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 {
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user