Here you can find the source of getExitMenuItem()
public static JMenuItem getExitMenuItem()
//package com.java2s; //License from project: Open Source License import javax.swing.JMenuItem; public class Main { public static JMenuItem exitMenuItem = new JMenuItem("Exit"); public static JMenuItem getExitMenuItem() { return exitMenuItem; }// w w w.j ava 2 s . c o m }