MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getScreenConfigs

Method getScreenConfigs

ij/src/main/java/ij/gui/GUI.java:93–99  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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.

Callers 3

getScreenBoundsMethod · 0.95
getZeroBasedMaxBoundsMethod · 0.95
getUnionOfBoundsMethod · 0.95

Calls 1

addMethod · 0.65

Tested by

no test coverage detected