List of usage examples for javax.swing JMenu setComponentOrientation
public void setComponentOrientation(ComponentOrientation o)
From source file:Main.java
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);//from w w w .j a v a 2 s . c om frame.setJMenuBar(menuBar); frame.setSize(350, 250); frame.setVisible(true); }