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 * Determines if the method is a listener method
11 *
12 * @param method The possible listener method. Cannot be null.
13 * @return True if this is a listener method
14 */
15 boolean isListenerMethod(Method method);
16 }