1. /*
  2. * @(#)DefaultMenuLayout.java 1.3 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.plaf.basic;
  8. import javax.swing.*;
  9. import javax.swing.plaf.UIResource;
  10. import java.awt.Container;
  11. /**
  12. * The default layout manager for Popup menus and menubars. This
  13. * class is an extension of BoxLayout which adds the UIResource tag
  14. * so that plauggable L&Fs can distinguish it from user-installed
  15. * layout managers on menus.
  16. *
  17. * @version 1.3 11/29/01
  18. * @author Georges Saab
  19. */
  20. public class DefaultMenuLayout extends BoxLayout implements UIResource {
  21. public DefaultMenuLayout(Container target, int axis) {
  22. super(target, axis);
  23. }
  24. }