summaryrefslogtreecommitdiffstats
path: root/awt/java/awt/AWTKeyStroke.java
blob: 5e7de4e3fcdc1975a8aecb545db863f40ac8f144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/**
 * @author Dmitry A. Durnev
 * @version $Revision$
 */
package java.awt;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.io.ObjectStreamException;
import java.io.Serializable;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.StringTokenizer;

import org.apache.harmony.awt.internal.nls.Messages;

/**
 * The AWTKeyStroke holds all of the information for the complete act of 
 * typing a character. This includes the events that are generated when 
 * the key is pressed, released, or typed (pressed and released generating
 * a unicode character result) which are associated with the event
 * objects KeyEvent.KEY_PRESSED, KeyEvent.KEY_RELEASED, or KeyEvent.KEY_TYPED.
 * It also holds information about which modifiers (such as control or 
 * shift) were used in conjunction with the keystroke. The following masks 
 * are available to identify the modifiers:
 * <ul>
 * <li>java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK</li>
 * <li>java.awt.event.InputEvent.ALT_DOWN_MASK</li>
 * <li>java.awt.event.InputEvent.CTRL_DOWN_MASK</li>
 * <li>java.awt.event.InputEvent.META_DOWN_MASK</li>
 * <li>java.awt.event.InputEvent.SHIFT_DOWN_MASK</li>
 * <li>java.awt.event.InputEvent.ALT_GRAPH_MASK</li>
 * <li>java.awt.event.InputEvent.ALT_MASK</li>
 * <li>java.awt.event.InputEvent.CTRL_MASK</li>
 * <li>java.awt.event.InputEvent.META_MASK</li>  
 * <li>java.awt.event.InputEvent.SHIFT_MASK</li>
 * </ul>  
 * <br>
 *  The AWTKeyStroke is unique, and applications should not create their own 
 *  instances of AWTKeyStroke. All applications should use getAWTKeyStroke 
 *  methods for obtaining instances of AWTKeyStroke.
 */
public class AWTKeyStroke implements Serializable {
    
    /** The Constant serialVersionUID. */
    private static final long serialVersionUID = -6430539691155161871L;

    /** The Constant cache. */
    private static final Map<AWTKeyStroke, AWTKeyStroke> cache = new HashMap<AWTKeyStroke, AWTKeyStroke>(); //Map<AWTKeyStroke, ? extends AWTKeyStroke>
    
    /** The Constant keyEventTypesMap. */
    private static final Map<Integer, String> keyEventTypesMap = new HashMap<Integer, String>(); //Map<int, String>

    private static Constructor<?> subConstructor;   

    static {
        keyEventTypesMap.put(new Integer(KeyEvent.KEY_PRESSED), "pressed"); //$NON-NLS-1$
        keyEventTypesMap.put(new Integer(KeyEvent.KEY_RELEASED), "released"); //$NON-NLS-1$
        keyEventTypesMap.put(new Integer(KeyEvent.KEY_TYPED), "typed"); //$NON-NLS-1$
    }

    /** The key char. */
    private char keyChar;
    
    /** The key code. */
    private int keyCode;
    
    /** The modifiers. */
    private int modifiers;
    
    /** The on key release. */
    private boolean onKeyRelease;
    
    /**
     * Instantiates a new AWTKeyStroke. 
     * getAWTKeyStroke method should be used by applications code.  
     * 
     * @param keyChar the key char
     * @param keyCode the key code
     * @param modifiers the modifiers
     * @param onKeyRelease true if AWTKeyStroke is for a key release, overwise false. 
     */
    protected AWTKeyStroke(char keyChar, int keyCode, int modifiers,
            boolean onKeyRelease)
    {
       setAWTKeyStroke(keyChar, keyCode, modifiers, onKeyRelease);
    }

    /** Sets the awt key stroke.
     * 
     * @param keyChar the key char
     * @param keyCode the key code
     * @param modifiers the modifiers
     * @param onKeyRelease the on key release
     */
    private void setAWTKeyStroke( char keyChar, int keyCode, int modifiers,
            boolean onKeyRelease)
    {
        this.keyChar = keyChar;
        this.keyCode = keyCode;
        this.modifiers = modifiers;
        this.onKeyRelease = onKeyRelease;
    }
    
    /**
     * Instantiates a new AWTKeyStroke with default parameters:
     * KeyEvent.CHAR_UNDEFINED key char, KeyEvent.VK_UNDEFINED key code,
     * without modifiers and false key realised value.
     */
    protected AWTKeyStroke() {
        this(KeyEvent.CHAR_UNDEFINED, KeyEvent.VK_UNDEFINED, 0, false);
    }

    /**
     * Returns the unique number value for AWTKeyStroke object.
     * 
     * @return the int unique value of the AWTKeyStroke object.
     */
    @Override
    public int hashCode() {
        return modifiers + ( keyCode != KeyEvent.VK_UNDEFINED ?
                keyCode : keyChar) + (onKeyRelease ? -1 : 0);
    }

    /**
     * Gets the set of modifiers for the AWTKeyStroke object.
     * 
     * @return the int value which contains modifiers.
     */
    public final int getModifiers() {
        return modifiers;
    }

    /**
     * Compares the AWTKeyStroke object to the specified object.
     * 
     * @return true, if objects are identical, overwise false.
     */
    @Override
    public final boolean equals(Object anObject) {
        if (anObject instanceof AWTKeyStroke) {
            AWTKeyStroke key = (AWTKeyStroke)anObject;
            return ((key.keyCode == keyCode) && (key.keyChar == keyChar) &&
                    (key.modifiers == modifiers) &&
                    (key.onKeyRelease == onKeyRelease));
        }
        return false;
    }

    /**
     * Returns the string representation of the AWTKeyStroke.
     * This string should contain key stroke properties.
     * 
     * @return the string representation of the AWTKeyStroke.
     */
    @Override
    public String toString() {
        int type = getKeyEventType();
        return InputEvent.getModifiersExText(getModifiers()) + " " + //$NON-NLS-1$
            keyEventTypesMap.get(new Integer(type)) +  " " + //$NON-NLS-1$
            (type == KeyEvent.KEY_TYPED ? new String(new char[] {keyChar}) :
                                          KeyEvent.getKeyText(keyCode));
    }

    /**
     * Gets the key code for the AWTKeyStroke object.
     * 
     * @return the key code for the AWTKeyStroke object.
     */
    public final int getKeyCode() {
        return keyCode;
    }

    /**
     * Gets the key character for the AWTKeyStroke object.
     * 
     * @return the key character for the AWTKeyStroke object.
     */
    public final char getKeyChar() {
        return keyChar;
    }

    /**
     * Gets the AWT key stroke.
     * 
     * @param keyChar the key char
     * @param keyCode the key code
     * @param modifiers the modifiers
     * @param onKeyRelease the on key release
     * 
     * @return the AWT key stroke
     */
    private static AWTKeyStroke getAWTKeyStroke(char keyChar, int keyCode,
                                                int modifiers,
                                                boolean onKeyRelease) {
        AWTKeyStroke key = newInstance(keyChar, keyCode, modifiers, onKeyRelease);

        AWTKeyStroke value = cache.get(key);
        if (value == null) {
            value = key;
            cache.put(key, value);
        }
        return value;
    }

    /**
     * New instance.
     * 
     * @param keyChar the key char
     * @param keyCode the key code
     * @param modifiers the modifiers
     * @param onKeyRelease the on key release
     * 
     * @return the AWT key stroke
     */
    private static AWTKeyStroke newInstance(char keyChar, int keyCode,
                                            int modifiers,
                                            boolean onKeyRelease) {
        AWTKeyStroke key;
        //???AWT
//        if (subConstructor == null) {
            key = new AWTKeyStroke();
        //???AWT
//        } else {
//            try {
//                key = (AWTKeyStroke) subConstructor.newInstance();
//            } catch (Exception e) {
//                throw new RuntimeException(e);
//            }
//        }
        int allModifiers = getAllModifiers(modifiers);
        key.setAWTKeyStroke(keyChar, keyCode, allModifiers, onKeyRelease);
        return key;
    }

    /**
     * Adds the mask.
     * 
     * @param mod the mod
     * @param mask the mask
     * 
     * @return the int
     */
    private static int addMask(int mod, int mask) {
        return ((mod & mask) != 0) ? (mod | mask) : mod;
    }

    /**
     * return all (old & new) modifiers corresponding to.
     * 
     * @param mod old or new modifiers
     * 
     * @return old and new modifiers together
     */
    static int getAllModifiers(int mod) {
        int allMod = mod;
        int shift = (InputEvent.SHIFT_MASK | InputEvent.SHIFT_DOWN_MASK);
        int ctrl = (InputEvent.CTRL_MASK | InputEvent.CTRL_DOWN_MASK);
        int meta = (InputEvent.META_MASK | InputEvent.META_DOWN_MASK);
        int alt = (InputEvent.ALT_MASK | InputEvent.ALT_DOWN_MASK);
        int altGr = (InputEvent.ALT_GRAPH_MASK | InputEvent.ALT_GRAPH_DOWN_MASK);
        // button modifiers are not converted between old & new

        allMod = addMask(allMod, shift);
        allMod = addMask(allMod, ctrl);
        allMod = addMask(allMod, meta);
        allMod = addMask(allMod, alt);
        allMod = addMask(allMod, altGr);

        return allMod;
    }

    /**
     * Returns an instance of AWTKeyStroke for parsed string.
     * 
     * The string must have the following syntax:
     *<p>
     * &lt;modifiers&gt;* (&lt;typedID&gt; | &lt;pressedReleasedID&gt;)
     *<p>
     * modifiers := shift | control | ctrl | meta | alt | altGraph
     * <br> 
     * typedID := typed <typedKey>
     * <br>
     * typedKey := string of length 1 giving the Unicode character.
     * <br>
     * pressedReleasedID := (pressed | released) <key>
     * <br>
     * key := KeyEvent key code name, i.e. the name following "VK_".
     * <p>
     * @param s the String which contains key stroke parameters.
     * 
     * @return the AWTKeyStroke for string.
     * 
     * @throws IllegalArgumentException if string has incorrect format or null.
     */
    public static AWTKeyStroke getAWTKeyStroke(String s) {
        if (s == null) {
            // awt.65=null argument
            throw new IllegalArgumentException(Messages.getString("awt.65")); //$NON-NLS-1$
        }

        StringTokenizer tokenizer = new StringTokenizer(s);

        Boolean release = null;
        int modifiers = 0;
        int keyCode = KeyEvent.VK_UNDEFINED;
        char keyChar = KeyEvent.CHAR_UNDEFINED;
        boolean typed = false;
        long modifier = 0;
        String token = null;
        do {
            token = getNextToken(tokenizer);
            modifier = parseModifier(token);
            modifiers |= modifier;
        } while (modifier > 0);

        typed = parseTypedID(token);

        if (typed) {
            token = getNextToken(tokenizer);
            keyChar = parseTypedKey(token);

        }
        if (keyChar == KeyEvent.CHAR_UNDEFINED) {
            release = parsePressedReleasedID(token);
            if (release != null) {
                token = getNextToken(tokenizer);
            }
            keyCode = parseKey(token);
        }
        if (tokenizer.hasMoreTokens()) {
            // awt.66=Invalid format
            throw new IllegalArgumentException(Messages.getString("awt.66")); //$NON-NLS-1$
        }

        return getAWTKeyStroke(keyChar, keyCode, modifiers,
                               release == Boolean.TRUE);
    }

    /**
     * Gets the next token.
     * 
     * @param tokenizer the tokenizer
     * 
     * @return the next token
     */
    private static String getNextToken(StringTokenizer tokenizer) {
        try {
            return tokenizer.nextToken();
        } catch (NoSuchElementException exception) {
            // awt.66=Invalid format
            throw new IllegalArgumentException(Messages.getString("awt.66")); //$NON-NLS-1$
        }
    }

    /**
     * Gets the key code.
     * 
     * @param s the s
     * 
     * @return the key code
     */
    static int getKeyCode(String s) {
        try {
            Field vk = KeyEvent.class.getField("VK_" + s); //$NON-NLS-1$
            return vk.getInt(null);
        } catch (Exception e) {
            if (s.length() != 1) {
                // awt.66=Invalid format
                throw new IllegalArgumentException(Messages.getString("awt.66")); //$NON-NLS-1$
            }
            return KeyEvent.VK_UNDEFINED;
        }
    }

    /**
     * Gets an instance of the AWTKeyStroke for specified character.
     * 
     * @param keyChar the keyboard character value.
     * 
     * @return a AWTKeyStroke for specified character.
     */
    public static AWTKeyStroke getAWTKeyStroke(char keyChar) {
        return getAWTKeyStroke(keyChar, KeyEvent.VK_UNDEFINED, 0, false);
    }

    /**
     * Returns an instance of AWTKeyStroke for a given key code, set 
     * of modifiers, and specified key released flag value.
     * The key codes are defined in java.awt.event.KeyEvent class. 
     * The set of modifiers is given as a bitwise combination 
     * of masks taken from the following list:
     * <ul>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.META_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.SHIFT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_MASK</li>
     * <li>java.awt.event.InputEvent.META_MASK</li>  
     * <li>java.awt.event.InputEvent.SHIFT_MASK</li>
     * </ul>
     *  <br>
     *  
     * @param keyCode the specified key code of keyboard.
     * @param modifiers the bit set of modifiers.
     * 
     * @return the AWTKeyStroke.
     */
    public static AWTKeyStroke getAWTKeyStroke(int keyCode, int modifiers,
                                               boolean onKeyRelease) {
        return getAWTKeyStroke(KeyEvent.CHAR_UNDEFINED, keyCode, modifiers,
                               onKeyRelease);
    }

    /**
     * Returns AWTKeyStroke for a specified character and set of modifiers. 
     * The set of modifiers is given as a bitwise combination 
     * of masks taken from the following list:
     * <ul>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.META_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.SHIFT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_MASK</li>
     * <li>java.awt.event.InputEvent.META_MASK</li>  
     * <li>java.awt.event.InputEvent.SHIFT_MASK</li>
     * </ul>
     * 
     * @param keyChar the Character object which represents keyboard character value.
     * @param modifiers the bit set of modifiers.
     * 
     * @return the AWTKeyStroke object.
     * 
     * @throws IllegalArgumentException if keyChar value is null.
     */
    public static AWTKeyStroke getAWTKeyStroke(Character keyChar, int modifiers) {
        if (keyChar == null) {
            // awt.01='{0}' parameter is null
            throw new IllegalArgumentException(Messages.getString("awt.01", "keyChar")); //$NON-NLS-1$ //$NON-NLS-2$
        }
        return getAWTKeyStroke(keyChar.charValue(), KeyEvent.VK_UNDEFINED,
                               modifiers, false);
    }

    /**
     * Returns an instance of AWTKeyStroke for a specified key code and 
     * set of modifiers.
     * The key codes are defined in java.awt.event.KeyEvent class. 
     * The set of modifiers is given as a bitwise combination 
     * of masks taken from the following list:
     * <ul>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.META_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.SHIFT_DOWN_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_GRAPH_MASK</li>
     * <li>java.awt.event.InputEvent.ALT_MASK</li>
     * <li>java.awt.event.InputEvent.CTRL_MASK</li>
     * <li>java.awt.event.InputEvent.META_MASK</li>  
     * <li>java.awt.event.InputEvent.SHIFT_MASK</li>
     * </ul>
     *  
     * @param keyCode the specified key code of keyboard.
     * @param modifiers the bit set of modifiers.
     * 
     * @return the AWTKeyStroke
     */
    public static AWTKeyStroke getAWTKeyStroke(int keyCode, int modifiers) {
        return getAWTKeyStroke(keyCode, modifiers, false);
    }

    /**
     * Gets the AWTKeyStroke for a key event. This method obtains the key char 
     * and key code from the specified key event.
     * 
     * @param anEvent the key event which identifies the desired AWTKeyStroke.
     * 
     * @return the AWTKeyStroke for the key event.
     */
    public static AWTKeyStroke getAWTKeyStrokeForEvent(KeyEvent anEvent) {
        int id = anEvent.getID();
        char undef = KeyEvent.CHAR_UNDEFINED;
        char keyChar = (id == KeyEvent.KEY_TYPED ? anEvent.getKeyChar() :
                                                   undef);
        int keyCode = (keyChar == undef ? anEvent.getKeyCode() :
                                          KeyEvent.VK_UNDEFINED);
        return getAWTKeyStroke(keyChar, keyCode, anEvent.getModifiersEx(),
                               id == KeyEvent.KEY_RELEASED);
    }

    /**
     * Gets the key event type for the AWTKeyStroke object.
     * 
     * @return the key event type: KeyEvent.KEY_PRESSED, KeyEvent.KEY_TYPED, or KeyEvent.KEY_RELEASED
     */
    public final int getKeyEventType() {
        if (keyCode == KeyEvent.VK_UNDEFINED) {
            return KeyEvent.KEY_TYPED;
        }
        return (onKeyRelease ? KeyEvent.KEY_RELEASED : KeyEvent.KEY_PRESSED);
    }

    /**
     * Retuns true if the key event is associated with the AWTKeyStroke is 
     * KEY_RELEASED, overwise false.
     * 
     * @return true, if if the key event associated with the AWTKeyStroke is 
     * KEY_RELEASED, overwise false.
     */
    public final boolean isOnKeyRelease() {
        return onKeyRelease;
    }

    /**
     * Read resolve.
     * 
     * @return the object
     * 
     * @throws ObjectStreamException the object stream exception
     */
    protected Object readResolve() throws ObjectStreamException {
        return getAWTKeyStroke(this.keyChar, this.keyCode,
                               this.modifiers, this.onKeyRelease);
    }

    /**
     * Register subclass.
     * 
     * @param subclass the subclass
     */
    protected static void registerSubclass(Class<?> subclass) {
        //???AWT
        /*
        if (subclass == null) {
            // awt.01='{0}' parameter is null
            throw new IllegalArgumentException(Messages.getString("awt.01", "subclass")); //$NON-NLS-1$ //$NON-NLS-2$
        }
        if (! AWTKeyStroke.class.isAssignableFrom(subclass)) {
            // awt.67=subclass is not derived from AWTKeyStroke
            throw new ClassCastException(Messages.getString("awt.67")); //$NON-NLS-1$
        }
        try {
            subConstructor = subclass.getDeclaredConstructor();
            subConstructor.setAccessible(true);
        } catch (SecurityException e) {
            throw new RuntimeException(e);
        } catch (NoSuchMethodException e) {
            // awt.68=subclass could not be instantiated
            throw new IllegalArgumentException(Messages.getString("awt.68")); //$NON-NLS-1$
        }
        cache.clear(); //flush the cache
        */
    }

    /**
     * Parses the modifier.
     * 
     * @param strMod the str mod
     * 
     * @return the long
     */
    private static long parseModifier(String strMod) {
        long modifiers = 0l;
        if (strMod.equals("shift")) { //$NON-NLS-1$
            modifiers |= InputEvent.SHIFT_DOWN_MASK;
        } else if (strMod.equals("control") || strMod.equals("ctrl")) { //$NON-NLS-1$ //$NON-NLS-2$
            modifiers |= InputEvent.CTRL_DOWN_MASK;
        } else if (strMod.equals("meta")) { //$NON-NLS-1$
            modifiers |= InputEvent.META_DOWN_MASK;
        } else if (strMod.equals("alt")) { //$NON-NLS-1$
            modifiers |= InputEvent.ALT_DOWN_MASK;
        } else if (strMod.equals("altGraph")) { //$NON-NLS-1$
            modifiers |= InputEvent.ALT_GRAPH_DOWN_MASK;
        } else if (strMod.equals("button1")) { //$NON-NLS-1$
            modifiers |= InputEvent.BUTTON1_DOWN_MASK;
        } else if (strMod.equals("button2")) { //$NON-NLS-1$
            modifiers |= InputEvent.BUTTON2_DOWN_MASK;
        } else if (strMod.equals("button3")) { //$NON-NLS-1$
            modifiers |= InputEvent.BUTTON3_DOWN_MASK;
        }
        return modifiers;
    }

    /**
     * Parses the typed id.
     * 
     * @param strTyped the str typed
     * 
     * @return true, if successful
     */
    private static boolean parseTypedID(String strTyped) {
        if (strTyped.equals("typed")) { //$NON-NLS-1$
            return true;
        }

        return false;
    }

    /**
     * Parses the typed key.
     * 
     * @param strChar the str char
     * 
     * @return the char
     */
    private static char parseTypedKey(String strChar) {
        char keyChar = KeyEvent.CHAR_UNDEFINED;

        if (strChar.length() != 1) {
            // awt.66=Invalid format
            throw new IllegalArgumentException(Messages.getString("awt.66")); //$NON-NLS-1$
        }
        keyChar = strChar.charAt(0);
        return keyChar;
    }

    /**
     * Parses the pressed released id.
     * 
     * @param str the str
     * 
     * @return the boolean
     */
    private static Boolean parsePressedReleasedID(String str) {

        if (str.equals("pressed")) { //$NON-NLS-1$
            return Boolean.FALSE;
        } else if (str.equals("released")) { //$NON-NLS-1$
            return Boolean.TRUE;
        }
        return null;
    }

    /**
     * Parses the key.
     * 
     * @param strCode the str code
     * 
     * @return the int
     */
    private static int parseKey(String strCode) {
        int keyCode = KeyEvent.VK_UNDEFINED;

        keyCode = getKeyCode(strCode);

        if (keyCode == KeyEvent.VK_UNDEFINED) {
            // awt.66=Invalid format
            throw new IllegalArgumentException(Messages.getString("awt.66")); //$NON-NLS-1$
        }
        return keyCode;
    }
}