jdk/src/java.desktop/share/classes/java/awt/event/KeyEvent.java
changeset 28059 e576535359cc
parent 26749 b6598aa90114
child 35667 ed476aba94de
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
  1307     }
  1307     }
  1308 
  1308 
  1309     /**
  1309     /**
  1310      * Set the keyChar value to indicate a logical character.
  1310      * Set the keyChar value to indicate a logical character.
  1311      *
  1311      *
  1312      * @param keyChar a char corresponding to to the combination of keystrokes
  1312      * @param keyChar a char corresponding to the combination of keystrokes
  1313      *                that make up this event.
  1313      *                that make up this event.
  1314      */
  1314      */
  1315     public void setKeyChar(char keyChar) {
  1315     public void setKeyChar(char keyChar) {
  1316         this.keyChar = keyChar;
  1316         this.keyChar = keyChar;
  1317     }
  1317     }