Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.Insets;

import javax.swing.AbstractButton;
import javax.swing.JButton;
import javax.swing.JFrame;

public class Main {
    public static void main(String[] args) {
        AbstractButton jb = new JButton("Press Me");
        jb.setMargin(new Insets(5, 5, 5, 5));

        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(jb);
        f.pack();
        f.setVisible(true);
    }
}