()
| 91 | } |
| 92 | |
| 93 | private static java.util.List<GraphicsConfiguration> getScreenConfigs() { |
| 94 | java.util.ArrayList<GraphicsConfiguration> configs = new java.util.ArrayList<GraphicsConfiguration>(); |
| 95 | for (GraphicsDevice device : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) { |
| 96 | configs.add(device.getDefaultConfiguration()); |
| 97 | } |
| 98 | return configs; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Get maximum bounds for the screen that contains a given point. |
no test coverage detected