Set the WM_CLASS window property. @param appClass application class @return this
(String appClass)
| 83 | * @return this |
| 84 | */ |
| 85 | public Window setClassHint(String appClass) { |
| 86 | setClassHint(appClass, appClass); |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | public Window setClassHint(String name, String appClass) { |
| 91 | assert _onUIThread() : "Should be run on UI thread"; |
no test coverage detected