1. /*
  2. * @(#)MotifMenuBarUI.java 1.35 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 com.sun.java.swing.plaf.motif;
  11. import java.awt.Component;
  12. import java.awt.Container;
  13. import java.awt.Dimension;
  14. import java.awt.Graphics;
  15. import java.awt.Color;
  16. import java.awt.Insets;
  17. import java.awt.Point;
  18. import java.awt.Rectangle;
  19. import java.awt.event.*;
  20. import java.io.Serializable;
  21. import javax.swing.*;
  22. import javax.swing.event.*;
  23. import javax.swing.border.*;
  24. import javax.swing.plaf.*;
  25. import javax.swing.plaf.basic.BasicMenuBarUI;
  26. //REMIND
  27. import javax.swing.plaf.basic.*;
  28. /**
  29. * A Windows L&F implementation of MenuBarUI. This implementation
  30. * is a "combined" view/controller.
  31. * <p>
  32. * <strong>Warning:</strong>
  33. * Serialized objects of this class will not be compatible with
  34. * future Swing releases. The current serialization support is appropriate
  35. * for short term storage or RMI between applications running the same
  36. * version of Swing. A future release of Swing will provide support for
  37. * long term persistence.
  38. *
  39. * 1.35 02/02/00
  40. * @author Georges Saab
  41. * @author Rich Schiavi
  42. */
  43. public class MotifMenuBarUI extends BasicMenuBarUI
  44. {
  45. public static ComponentUI createUI(JComponent x) {
  46. return new MotifMenuBarUI();
  47. }
  48. } // end class