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

Method paramString

CodenameOne/src/com/codename1/ui/List.java:2257–2268  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2255
2256 /// {@inheritDoc}
2257 @Override
2258 protected String paramString() {
2259 String elemSizeStr = "element size = ";
2260 if (elemSize != null) {
2261 elemSizeStr += elemSize.toString();
2262 }
2263 return super.paramString() + ", " + elemSizeStr +
2264 ", itemGap = " + itemGap +
2265 ", orientation = " + orientation +
2266 ", selected index = " + getSelectedIndex() +
2267 ", size = " + size();
2268 }
2269
2270 /// Returns the hint text
2271 ///

Callers 1

typeMethod · 0.45

Calls 3

getSelectedIndexMethod · 0.95
sizeMethod · 0.95
toStringMethod · 0.65

Tested by

no test coverage detected