19 lines
416 B
Java
19 lines
416 B
Java
|
package love.distributedrebirth.numberxd.base2t.bone;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
/**
|
||
|
* Defines the bean name.
|
||
|
*
|
||
|
* @author willemtsade ©Δ∞ 仙上主天
|
||
|
*/
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Target({ElementType.TYPE})
|
||
|
public @interface BassBoneName {
|
||
|
|
||
|
String value();
|
||
|
}
|