List of usage examples for javax.swing JFrame subclass-usage
From source file ToolBarwithCheckBox.java
public class ToolBarwithCheckBox extends JFrame { public static void main(String[] args) { ToolBarwithCheckBox that = new ToolBarwithCheckBox(); that.setVisible(true); }
From source file PrimeCheck.java
public class PrimeCheck extends JFrame { public PrimeCheck() { setDefaultCloseOperation(EXIT_ON_CLOSE); JPanel pnl = new JPanel(); JButton btnCheck = new JButton("Check"); ActionListener al;
From source file MainClass.java
public class MainClass extends JFrame { public MainClass() { super("Custom TableModel Test"); setSize(300, 200); setDefaultCloseOperation(EXIT_ON_CLOSE);
From source file GUI.Graficar_reportes.java
/** * * @author natha9404 */ public class Graficar_reportes extends javax.swing.JFrame {
From source file HBoxWithGlue.java
public class HBoxWithGlue extends JFrame { public HBoxWithGlue() { super("Box & Glue Frame"); setSize(350, 100); Box box = Box.createHorizontalBox();
From source file FontComboBox.java
public class FontComboBox extends JFrame implements ActionListener { JLabel fontLabel = new JLabel("The quick brown fox jumps over the lazy dog."); private JComboBox fontComboBox; public FontComboBox() {
From source file MainClass.java
public class MainClass extends JFrame { public MainClass() { super("MainClass"); Container contentPane = getContentPane();
From source file Main.java
public class Main extends JFrame { public Main() { super("Main"); Container contentPane = getContentPane();
From source file Main.java
public class Main extends JFrame { MyPanel myComponent = new MyPanel(); JLabel contentPane = new JLabel("test"); Main() { contentPane.setLayout(new GridBagLayout());
From source file Draw2DObjects.java
public class Draw2DObjects extends JFrame { Shape shapes[] = new Shape[5]; public static void main(String args[]) { Draw2DObjects app = new Draw2DObjects(); }