Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

    }
}