MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / laidOut

Method laidOut

CodenameOne/src/com/codename1/ui/Label.java:273–284  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 ///

Callers

nothing calls this directly

Calls 1

initAutoResizeMethod · 0.95

Tested by

no test coverage detected