top.hendrixshen.magiclib.compat.api.annotation.InnerClass 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.
*
* Injects the specified class as an inner class into the target class.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface InnerClass {
/**
* Outer class
*
* @return Class.
*/
Class> value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy