(int[] storedLocation, int[] defaultLocation)
| 447 | } |
| 448 | |
| 449 | private void setPlacement(int[] storedLocation, int[] defaultLocation) { |
| 450 | if (storedLocation.length > 5 && storedLocation[5] != 0) { |
| 451 | setExtendedState(storedLocation[5]); |
| 452 | setPlacement(defaultLocation); |
| 453 | } else { |
| 454 | setPlacement(storedLocation); |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | private void setPlacement(int[] location) { |
| 459 | setBounds(location[0], location[1], location[2], location[3]); |