aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/geb/api/annotations/Event.java
blob: ea1724c544f78cf7fd1081748f057fcd9a2d10b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package ftbsc.geb.api.annotations;

import ftbsc.geb.api.IEvent;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a class as an Event. It should implement the {@link IEvent} interface.
 * It doesn't need to be abstract, but it can never be final.
 * @since 0.1.0
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface Event {}