mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 11:43:27 +00:00
14 lines
312 B
Java
14 lines
312 B
Java
package com.volmit.iris.util;
|
|
|
|
import static java.lang.annotation.ElementType.FIELD;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RUNTIME)
|
|
@Target({ FIELD })
|
|
public @interface DependsOn {
|
|
String[] value();
|
|
}
|