(Method method)
| 402 | } |
| 403 | |
| 404 | private boolean loadTextStyle(Method method) { |
| 405 | TextStyle style = method.getDeclaredAnnotation(TextStyle.class); |
| 406 | if (style != null) { |
| 407 | resources.put(method.getName(), new DisposableStyler(display, style)); |
| 408 | return true; |
| 409 | } |
| 410 | return false; |
| 411 | } |
| 412 | |
| 413 | public boolean loadFont(Method method) { |
| 414 | Text text = method.getDeclaredAnnotation(Text.class); |
no test coverage detected