()
| 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 | /// |
nothing calls this directly
no test coverage detected