top.hendrixshen.magiclib.compat.api.annotation.SuperInitMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magiclib-1_14_4 Show documentation
Show all versions of magiclib-1_14_4 Show documentation
To beat magic with magic :(
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's
* superclass is called.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface SuperInitMethod {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy