()
| 463 | } |
| 464 | |
| 465 | protected int[] getPlacement() { |
| 466 | int[] location = new int[6]; |
| 467 | |
| 468 | // Get the dimensions of the Frame |
| 469 | Rectangle bounds = getBounds(); |
| 470 | location[0] = bounds.x; |
| 471 | location[1] = bounds.y; |
| 472 | location[2] = bounds.width; |
| 473 | location[3] = bounds.height; |
| 474 | |
| 475 | // Get the current placement of the divider |
| 476 | location[4] = splitPane.getDividerLocation(); |
| 477 | location[5] = getExtendedState() & MAXIMIZED_BOTH; |
| 478 | |
| 479 | return location; |
| 480 | } |
| 481 | |
| 482 | |
| 483 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no outgoing calls
no test coverage detected