I am writing a C++ app that retrieves a Java window and sets it as maximized. I am wondering what the registered class of a Java window is for FindWindow(LPCTSTR lpClassName, LPCTSTR lpWindowName);
In JRE 1.6, Win32 Window class name for the top-level application window is set to SunAwtFrame
. Prior to 1.6 it was inherited from the Java class name. Here are some details.