コード例 #1
0
 @Override
 public void performAction() {
   // Closing the last window is equivalent to quitting the application: perform QuitAction in that
   // case
   if (WindowManager.getMainFrames().size() == 1)
     ActionManager.performAction(QuitAction.Descriptor.ACTION_ID, mainFrame);
   // Simply dispose the MainFrame
   else mainFrame.dispose();
 }