Gets all the normal static methods of this class for the given name. @return static methods available from this class for given name
(final Class<?> sender, final String name)
| 793 | * @return static methods available from this class for given name |
| 794 | */ |
| 795 | private Object getStaticMethods(final Class<?> sender, final String name) { |
| 796 | final MetaMethodIndex.Cache entry = metaMethodIndex.getMethods(sender, name); |
| 797 | if (entry == null) |
| 798 | return FastArray.EMPTY_LIST; |
| 799 | Object answer = entry.staticMethods; |
| 800 | if (answer == null) |
| 801 | return FastArray.EMPTY_LIST; |
| 802 | return answer; |
| 803 | } |
| 804 | |
| 805 | /** |
| 806 | * Returns whether this MetaClassImpl has been modified. Since MetaClassImpl |
no test coverage detected