HandleReductionMain.java 430 B

123456789101112131415
  1. import java.awt.Color;
  2. import javax.swing.JFrame;
  3. public class HandleReductionMain{
  4. public static void main(String args[]) {
  5. JFrame handleFrame= new JFrame();
  6. handleFrame.setTitle("Handle reduction");
  7. handleFrame.setBackground(Color.white);
  8. handleFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  9. handleFrame.setContentPane(new Components());
  10. handleFrame.setSize(1000,900);
  11. handleFrame.setVisible(true);
  12. }
  13. }