A simple interface that specifies how to test classes to determine if they are to be included in the results produced by the ResolverUtil.
| 37 | * are to be included in the results produced by the ResolverUtil. |
| 38 | */ |
| 39 | public static interface Test { |
| 40 | /** |
| 41 | * Will be called repeatedly with candidate classes. Must return True if a class |
| 42 | * is to be included in the results, false otherwise. |
| 43 | */ |
| 44 | boolean matches(Class<?> type); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * 查询实现类,继承与parentType,并不是当前类,不是抽象类。 |
no outgoing calls
no test coverage detected