jdk/src/share/classes/javax/swing/plaf/ComponentInputMapUIResource.java
changeset 23697 e556a715949f
parent 5506 202f599c92aa
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2006, 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
    34  * UI classes which provide a ComponentInputMap should use this class.
    34  * UI classes which provide a ComponentInputMap should use this class.
    35  *
    35  *
    36  * @author Scott Violet
    36  * @author Scott Violet
    37  * @since 1.3
    37  * @since 1.3
    38  */
    38  */
       
    39 @SuppressWarnings("serial") // Superclass is not serializable across versions
    39 public class ComponentInputMapUIResource extends ComponentInputMap implements UIResource {
    40 public class ComponentInputMapUIResource extends ComponentInputMap implements UIResource {
    40     public ComponentInputMapUIResource(JComponent component) {
    41     public ComponentInputMapUIResource(JComponent component) {
    41         super(component);
    42         super(component);
    42     }
    43     }
    43 }
    44 }