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