()
| 169 | } |
| 170 | |
| 171 | public static Rectangle getZeroBasedMaxBounds() { |
| 172 | for (GraphicsConfiguration config : getScreenConfigs()) { |
| 173 | Rectangle bounds = config.getBounds(); |
| 174 | if (bounds != null && bounds.x == 0 && bounds.y == 0) |
| 175 | return bounds; |
| 176 | } |
| 177 | return null; |
| 178 | } |
| 179 | |
| 180 | public static Rectangle getUnionOfBounds() { |
| 181 | Rectangle unionOfBounds = new Rectangle(); |
nothing calls this directly
no test coverage detected