Java JMenu .setComponentOrientation (ComponentOrientation o)

Syntax

JMenu.setComponentOrientation(ComponentOrientation o) has the following syntax.

public void setComponentOrientation(ComponentOrientation o)

Example

In the following code shows how to use JMenu.setComponentOrientation(ComponentOrientation o) method.


/* w w  w  .  ja va 2s .  c o m*/
import java.awt.ComponentOrientation;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;

public class Main {
  public static void main(final String args[]) {
    JFrame frame = new JFrame("MenuSample Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JMenuBar menuBar = new JMenuBar();

    // File Menu, F - Mnemonic
    JMenu fileMenu = new JMenu("File");
    fileMenu.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);

    // File->New, N - Mnemonic
    JMenuItem newMenuItem = new JMenuItem("New");
    fileMenu.add(newMenuItem);

    frame.setJMenuBar(menuBar);
    frame.setSize(350, 250);
    frame.setVisible(true);
    
  }
}