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

top.hendrixshen.magiclib.compat.api.annotation.ThisInitMethod Maven / Gradle / Ivy

There is a newer version: 0.7.398+fe2125a-beta
Show newest version
package top.hendrixshen.magiclib.compat.api.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * MagicLibMixinPlugin auxiliary annotation.
 *
 * 

This method is used to add a new constructor to the target method. * *

When a method decorated by {@link InitMethod} is called in this method, * it means that the corresponding constructor method in the target class is called. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ThisInitMethod { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy