Skip to content

Instantly share code, notes, and snippets.

View madhavMathur's full-sized avatar

Madhav Mathur madhavMathur

View GitHub Profile
@madhavMathur
madhavMathur / Test.java
Last active August 29, 2015 14:14
JFrame Example
import javax.swing.*;
public class Test extends JPanel {
Test() {
JFrame frame = new JFrame("Hello");
frame.setSize(500, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.add(this);