(Method method)
| 339 | } |
| 340 | |
| 341 | private boolean loadResource(Method method) { |
| 342 | return loadIcon(method) || loadIconSequence(method) || loadColor(method) || |
| 343 | loadTextStyle(method) || loadFont(method); |
| 344 | } |
| 345 | |
| 346 | private boolean loadIcon(Method method) { |
| 347 | Icon icon = method.getDeclaredAnnotation(Icon.class); |
no test coverage detected