1 package com.atlassian.plugin.event.impl;
2
3 import java.lang.reflect.Method;
4
5 /**
6 * Determines if a method on a listener is a listener method or not
7 */
8 public interface ListenerMethodSelector
9 {
10 /**
11 * Determines if the method is a listener method
12 *
13 * @param method The possible listener method. Cannot be null.
14 * @return True if this is a listener method
15 */
16 boolean isListenerMethod(Method method);
17 }