jdk/src/share/classes/javax/swing/ComponentInputMap.java
changeset 23697 e556a715949f
parent 23010 6dadb192ad81
child 24983 f5a6e2ed8c7d
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    33  * <code>WHEN_IN_FOCUSED_WINDOW</code> bindings.
    33  * <code>WHEN_IN_FOCUSED_WINDOW</code> bindings.
    34  *
    34  *
    35  * @author Scott Violet
    35  * @author Scott Violet
    36  * @since 1.3
    36  * @since 1.3
    37  */
    37  */
    38 @SuppressWarnings("serial")
    38 @SuppressWarnings("serial") // Field data not serializable across versions
    39 public class ComponentInputMap extends InputMap {
    39 public class ComponentInputMap extends InputMap {
    40     /** Component binding is created for. */
    40     /** Component binding is created for. */
    41     private JComponent          component;
    41     private JComponent          component;
    42 
    42 
    43     /**
    43     /**