Example usage for javax.swing JMenu setComponentOrientation

List of usage examples for javax.swing JMenu setComponentOrientation

Introduction

In this page you can find the example usage for javax.swing JMenu setComponentOrientation.

Prototype

public void setComponentOrientation(ComponentOrientation o) 

Source Link

Usage

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);

}