Returns a list of methods matching a given descriptor. @param text @return
(String text)
| 135 | * @return |
| 136 | */ |
| 137 | public List<MappedMember> findMethodsByDesc(String text) { |
| 138 | List<MappedMember> list = new ArrayList<MappedMember>(); |
| 139 | for (MappedMember mm : getMethods()) { |
| 140 | if (mm.getDesc().equals(text)) { |
| 141 | list.add(mm); |
| 142 | } |
| 143 | } |
| 144 | return list; |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Returns a map of field mappings. Keys are based on the index they appear |
nothing calls this directly
no test coverage detected