MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;

public class MainClass {

    public static void main(final String args[]) {
        JFrame frame = new JFrame("Line Borders");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        Border thinBorder = LineBorder.createBlackLineBorder();

        JButton thinButton = new JButton("1 Pixel");
        thinButton.setBorder(thinBorder);

        Container contentPane = frame.getContentPane();
        contentPane.add(thinButton, BorderLayout.NORTH);
        frame.pack();
        frame.setSize(300, frame.getHeight());
        frame.setVisible(true);
    }
}