@see MetaObjectProtocol#respondsTo(Object, String, Object[])
(final Object obj, final String name, final Object[] argTypes)
| 301 | * @see MetaObjectProtocol#respondsTo(Object, String, Object[]) |
| 302 | */ |
| 303 | @Override |
| 304 | public List<MetaMethod> respondsTo(final Object obj, final String name, final Object[] argTypes) { |
| 305 | MetaMethod m = getMetaMethod(name, MetaClassHelper.castArgumentsToClassArray(argTypes)); |
| 306 | return (m != null ? Collections.singletonList(m) : Collections.emptyList()); |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * @see MetaObjectProtocol#respondsTo(Object, String) |
nothing calls this directly
no test coverage detected