summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/annotations/AutoRegisterListener.java
blob: 7e36c9e3c50cc3dfadb2f60c2b271979649c40b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.redstoner.annotations;

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

/**
 * The auto register annotation, to be put onto Classes that implement listener when you are too lazy to register the events yourself.
 *
 * @author Pepich
 */
@Target (ElementType.TYPE)
@Retention (RetentionPolicy.RUNTIME)
@Version (major = 1, minor = 0, revision = 1, compatible = 1)
public @interface AutoRegisterListener {}