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

Method toString

CodenameOne/src/com/codename1/ui/Tabs.java:1199–1207  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1197
1198 /// {@inheritDoc}
1199 @Override
1200 public String toString() {
1201 String className = getClass().getName();
1202 className = className.substring(className.lastIndexOf('.') + 1);
1203 return className + "[x=" + getX() + " y=" + getY() + " width=" +
1204 getWidth() + " height=" + getHeight() + ", tab placement = " +
1205 tabPlacement + ", tab count = " + getTabCount() +
1206 ", selected index = " + getSelectedIndex() + "]";
1207 }
1208
1209 /// Returns the placement of the tabs for this tabbedpane.
1210 ///

Callers

nothing calls this directly

Calls 10

substringMethod · 0.95
lastIndexOfMethod · 0.95
getTabCountMethod · 0.95
getSelectedIndexMethod · 0.95
getNameMethod · 0.65
getXMethod · 0.65
getYMethod · 0.65
getWidthMethod · 0.65
getHeightMethod · 0.65
getClassMethod · 0.45

Tested by

no test coverage detected