(Image icon)
| 191 | Button adComponent = new Button() { |
| 192 | |
| 193 | @Override |
| 194 | public void setIcon(Image icon) { |
| 195 | if (icon != null && isScaleMode()) { |
| 196 | icon = icon.scaledWidth(Display.getInstance().getDisplayWidth()); |
| 197 | } |
| 198 | super.setIcon(icon); |
| 199 | } |
| 200 | |
| 201 | }; |
| 202 | adComponent.setUIID("Container"); |
nothing calls this directly
no test coverage detected