ProjectAres/PGM/src/main/java/tc/oc/pgm/events/ListenerScope.java

17 lines
426 B
Java

package tc.oc.pgm.events;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import tc.oc.pgm.match.MatchScope;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Inherited
public @interface ListenerScope {
public MatchScope value();
}