List of usage examples for javax.swing JFrame subclass-usage
From source file ShowCurrencies.java
public class ShowCurrencies extends JFrame { public ShowCurrencies() { setDefaultCloseOperation(EXIT_ON_CLOSE); final Locale[] locales = Locale.getAvailableLocales(); TableModel model = new AbstractTableModel() { public int getColumnCount() {
From source file MainClass.java
public class MainClass extends JFrame implements ActionListener { JButton jb; MainClass(String title) { super(title); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
From source file PasswordFieldEchoChar.java
public class PasswordFieldEchoChar extends JFrame { public static void main(String[] args) { PasswordFieldEchoChar that = new PasswordFieldEchoChar(); that.setVisible(true); }
From source file MainClass.java
public class MainClass extends JFrame { MainClass() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel p = new JPanel(); p.setPreferredSize(new Dimension(300, 50));
From source file Main.java
public class Main extends JFrame { JSlider slider = new JSlider(); BoundedRangeModel model = slider.getModel(); public Main() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
From source file ComboBoxWithItemChangedListener.java
public class ComboBoxWithItemChangedListener extends JFrame { public static void main(String[] args) { ComboBoxWithItemChangedListener that = new ComboBoxWithItemChangedListener(); that.setVisible(true); }
From source file ColorPicker.java
public class ColorPicker extends JFrame { public ColorPicker() { super("JColorChooser Test Frame"); setSize(200, 100); final Container contentPane = getContentPane();
From source file MainClass.java
public class MainClass extends JFrame { MainClass() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel p = new JPanel(); p.setPreferredSize(new Dimension(200, 200));
From source file Main.java
public class Main extends JFrame { public Main() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JMenuBar bar = new JMenuBar(); JMenu menu = new JMenu(new AbstractAction("File") {
From source file RotateStrokeEllipse.java
public class RotateStrokeEllipse extends JFrame { public static void main(String[] args) { new RotateStrokeEllipse(); } public RotateStrokeEllipse() {