< prev index next >

src/java.desktop/share/classes/sun/awt/SunToolkit.java

Print this page

        

*** 1047,1066 **** --- 1047,1068 ---- } /** * Returns key modifiers used by Swing to set up a focus accelerator key stroke. */ + @SuppressWarnings("deprecation") public int getFocusAcceleratorKeyMask() { return InputEvent.ALT_MASK; } /** * Tests whether specified key modifiers mask can be used to enter a printable * character. This is a default implementation of this method, which reflects * the way things work on Windows: here, pressing ctrl + alt allows user to enter * characters from the extended character set (like euro sign or math symbols) */ + @SuppressWarnings("deprecation") public boolean isPrintableCharacterModifiersMask(int mods) { return ((mods & InputEvent.ALT_MASK) == (mods & InputEvent.CTRL_MASK)); } /**
< prev index next >