All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.api.DoNotModify Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.api;

import java.lang.annotation.*;

/**
 * DoNotModify is used to indicate that the return value of method, variables, etc. should not be modified
 * 

* DoNotModify注解用于标明方法的返回值,变量等不应该被修改 */ @PowerNukkitXOnly @Since("1.19.60-r1") @Documented @Retention(RetentionPolicy.SOURCE) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER}) public @interface DoNotModify { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy