jdk/src/share/classes/javax/swing/plaf/basic/DefaultMenuLayout.java
changeset 23697 e556a715949f
parent 23010 6dadb192ad81
child 25761 c408b10ef757
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 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
    37  * so that pluggable L&Fs can distinguish it from user-installed
    37  * so that pluggable L&Fs can distinguish it from user-installed
    38  * layout managers on menus.
    38  * layout managers on menus.
    39  *
    39  *
    40  * @author Georges Saab
    40  * @author Georges Saab
    41  */
    41  */
    42 
    42 @SuppressWarnings("serial") // Superclass is not serializable across versions
    43 public class DefaultMenuLayout extends BoxLayout implements UIResource {
    43 public class DefaultMenuLayout extends BoxLayout implements UIResource {
    44     public DefaultMenuLayout(Container target, int axis) {
    44     public DefaultMenuLayout(Container target, int axis) {
    45         super(target, axis);
    45         super(target, axis);
    46     }
    46     }
    47 
    47