JFrame.EXIT_ON_CLOSE : JFrame « javax.swing « Java by API






JFrame.EXIT_ON_CLOSE

  
/*
 * Output:
 *  
 */

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public void paint(Graphics g) {
    Dimension d = this.getPreferredSize();
    int fontSize = 20;

    g.setFont(new Font("TimesRoman", Font.PLAIN, fontSize));
     
    g.setColor(Color.red);
    
    g.drawString("www.java2s.com", 10, 20);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200,200);
    frame.setVisible(true);
  }
}

           
         
    
  








Related examples in the same category

1.JFrame.DISPOSE_ON_CLOSE
2.JFrame.DO_NOTHING_ON_CLOSE
3.JFrame: addComponentListener(ComponentListener l)
4.JFrame: addContainerListener(ContainerListener l)1
5.JFrame: addMouseWheelListener(MouseWheelListener l)
6.JFrame: addWindowListener(WindowListener lis)
7.JFrame: getAccessibleContext()
8.JFrame: getContentPane().getActionMap() [Bind key action to JFrame]
9.JFrame: getDefaultCloseOperation()
10.JFrame: getFontMetrics(Font font)
11.JFrame: getGlassPane()
12.JFrame: getLayeredPane()
13.JFrame: isFocusOwner()
14.JFrame: isUndecorated()
15.JFrame: processWindowEvent(WindowEvent e)
16.JFrame: setAlwaysOnTop(boolean alwaysOnTop)
17.JFrame: setBackground(Color c)
18.JFrame: setCursor(Cursor c)
19.JFrame: setDefaultButton(JButton defaultButton)
20.JFrame: setDefaultButton(JButton bn) (Remove 'Enter' key stroke from JTextField)
21.JFrame: setDefaultCloseOperation(int option)
22.JFrame: setDefaultLookAndFeelDecorated(boolean b)
23.JFrame: setExtendedState(int state)
24.JFrame: setFocusable(boolean focusable)
25.JFrame: setFocusableWindowState(boolean focusableWindowState)
26.JFrame: setFocusTraversalPolicy(FocusTraversalPolicy lo)
27.JFrame: setIconImage(Image image)
28.JFrame: setJMenuBar(JMenuBar bar)
29.JFrame: setLocation(int x, int y)
30.JFrame: setLocationByPlatform(boolean locationByPlatform)
31.JFrame: setLocationRelativeTo(Component c)
32.JFrame: setMaximizedBounds(Rectangle bounds)
33.JFrame: setSize(int width, int height)
34.JFrame: setTitle(String title)
35.JFrame: setUndecorated(boolean b)
36.JFrame: setVisible(boolean visible)