Gets the currently shown WorldTab @return WorldTab or null
()
| 291 | * @return WorldTab or null |
| 292 | */ |
| 293 | private WorldTab getSelectedTab() { |
| 294 | if (tabbedPane != null) { |
| 295 | final Component ret = tabbedPane.getSelectedComponent(); |
| 296 | if (ret instanceof WorldTab) { |
| 297 | return (WorldTab) ret; |
| 298 | } |
| 299 | } |
| 300 | return null; |
| 301 | } |
| 302 | |
| 303 | public JCheckBoxMenuItem getMiShowPlaceSelection() { |
| 304 | return menuWorldShowCursor; |
no outgoing calls
no test coverage detected