(Window w)
| 2535 | */ |
| 2536 | private static class AWT { |
| 2537 | static long getWindowID(Window w) throws HeadlessException { |
| 2538 | return getComponentID(w); |
| 2539 | } |
| 2540 | // Declaring the argument as Object rather than Component avoids class not |
| 2541 | // found errors on phoneME foundation profile. |
| 2542 | static long getComponentID(Object o) throws HeadlessException { |
no test coverage detected