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