Meta ? as KeyStroke from resourse file
On Mac, help called by 'meta ?' combination
I have all my serources in properties file and i need to initialize accelerator from string.
Question:
i can write "ctrl E" in resource and KeyStroke.getKeyStroke("ctrl E") will return to me correct KeyStroke
How can i get the same for "meta ?" combination ?
Since character '?' is not defined in KeyEvent.VK_XX constants getKeyStroke returns null. Is there any way to handle '?' to parse it correctly?

