@param type @return array with all the layers matching type
(Class<T> type)
| 81 | /** @param type |
| 82 | * @return array with all the layers matching type */ |
| 83 | public <T extends MapLayer> Array<T> getByType (Class<T> type) { |
| 84 | return getByType(type, new Array<T>()); |
| 85 | } |
| 86 | |
| 87 | /** @param type |
| 88 | * @param fill array to be filled with the matching layers |
no test coverage detected