1 package com.atlassian.plugin.event;
2
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
5 import java.lang.annotation.Target;
6 import java.lang.annotation.ElementType;
7
8 /**
9 * Marks a method that is interested in plugin events
10 */
11 @Retention(RetentionPolicy.RUNTIME)
12 @Target(ElementType.METHOD)
13 public @interface PluginEventListener
14 {
15 }