List of usage examples for javax.swing JFrame subclass-usage
From source file MouseWheelTest.java
public class MouseWheelTest extends JFrame { private static final Color colors[] = { Color.BLACK, Color.BLUE, Color.CYAN, Color.DARK_GRAY, Color.GRAY, Color.GREEN, Color.LIGHT_GRAY, Color.MAGENTA, Color.ORANGE, Color.PINK, Color.RED, Color.WHITE, Color.YELLOW }; public MouseWheelTest() {
From source file Main.java
public class Main extends JFrame { public Main() { getContentPane().setLayout(new FlowLayout()); JLabel labelTwo = new JLabel("www.java2s.com"); labelTwo.setBorder(BorderFactory.createEtchedBorder());
From source file Main.java
public class Main extends JFrame { public Main() { getContentPane().setLayout(new FlowLayout()); JLabel labelTwo = new JLabel("www.java2s.com"); labelTwo.setBorder(BorderFactory.createEtchedBorder());
From source file Main.java
public class Main extends JFrame { private JPanel contentPane; public static void main(String[] args) { Main frame = new Main();
From source file JComboBoxDemo.java
public class JComboBoxDemo extends JFrame { public JComboBoxDemo() { JComboBox itemsComboBox = new JComboBox(new String[] { "A", "L", "M" }); itemsComboBox.setEditable(true); itemsComboBox.setMaximumRowCount(3);
From source file Main.java
public class Main extends JFrame implements ActionListener { JTable table; JButton button; public Main() { String[] colNames = { "Subject", "Value" };
From source file Main.java
public class Main extends JFrame { public Main() { JComboBox itemsComboBox = new JComboBox(new String[] { "A", "L", "M" }); itemsComboBox.setEditable(true); itemsComboBox.setMaximumRowCount(3);
From source file Main.java
public class Main extends JFrame { public static void main(String[] args) { new Main().go(); } private void go() {
From source file Main.java
public class Main extends JFrame { public Main() { JPanel panel = new JPanel(); JLabel label = new JLabel("Number :"); JFormattedTextField tf = new JFormattedTextField(NumberFormat.getIntegerInstance());
From source file Animate.java
public class Animate extends JFrame { private static int DELAY = 100; Insets insets;