()
| 178 | } |
| 179 | |
| 180 | public static Rectangle getUnionOfBounds() { |
| 181 | Rectangle unionOfBounds = new Rectangle(); |
| 182 | for (GraphicsConfiguration config : getScreenConfigs()) { |
| 183 | unionOfBounds = unionOfBounds.union(config.getBounds()); |
| 184 | } |
| 185 | return unionOfBounds; |
| 186 | } |
| 187 | |
| 188 | static private Frame frame; |
| 189 |
nothing calls this directly
no test coverage detected