< prev index next >

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

Print this page


























   1 package sun.awt;
   2 
   3 import java.util.Collections;
   4 import java.util.HashMap;
   5 import java.util.HashSet;
   6 import java.awt.event.KeyEvent;
   7 
   8 public class ExtendedKeyCodes {
   9     /**
  10      * ATTN: These are the readonly hashes with load factor == 1;
  11      * adding a value, please set the inital capacity to exact number of items
  12      * or higher.
  13      */
  14      // Keycodes declared in KeyEvent.java with corresponding Unicode values.
  15      private static final HashMap<Integer, Integer>  regularKeyCodesMap =
  16                                           new HashMap<Integer,Integer>(98, 1.0f);
  17 
  18      // Keycodes derived from Unicode values. Here should be collected codes
  19      // for characters appearing on the primary layer of at least one
  20      // known keyboard layout. For instance, sterling sign is on the primary layer


   1 /*
   2  * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package sun.awt;
  26 
  27 import java.util.Collections;
  28 import java.util.HashMap;
  29 import java.util.HashSet;
  30 import java.awt.event.KeyEvent;
  31 
  32 public class ExtendedKeyCodes {
  33     /**
  34      * ATTN: These are the readonly hashes with load factor == 1;
  35      * adding a value, please set the inital capacity to exact number of items
  36      * or higher.
  37      */
  38      // Keycodes declared in KeyEvent.java with corresponding Unicode values.
  39      private static final HashMap<Integer, Integer>  regularKeyCodesMap =
  40                                           new HashMap<Integer,Integer>(98, 1.0f);
  41 
  42      // Keycodes derived from Unicode values. Here should be collected codes
  43      // for characters appearing on the primary layer of at least one
  44      // known keyboard layout. For instance, sterling sign is on the primary layer


< prev index next >