()
| 271 | /// {@inheritDoc} |
| 272 | /// This is overriden for auto size mode |
| 273 | @Override |
| 274 | protected void laidOut() { |
| 275 | if (autoSizeLaidOutLock) { |
| 276 | return; |
| 277 | } |
| 278 | autoSizeLaidOutLock = true; |
| 279 | super.laidOut(); |
| 280 | if (autoSizeMode) { |
| 281 | initAutoResize(); |
| 282 | } |
| 283 | autoSizeLaidOutLock = false; |
| 284 | } |
| 285 | |
| 286 | /// Gets the text to be used in a badge on this label. |
| 287 | /// |
nothing calls this directly
no test coverage detected