List of usage examples for javax.swing JFrame setVisible
public void setVisible(boolean b)
From source file:ScrollTableSample.java
public static void main(String args[]) { Object rows[][] = { { "one", "ichi - \u4E00" }, { "two", "ni - \u4E8C" }, { "three", "san - \u4E09" }, { "four", "shi - \u56DB" }, { "five", "go - \u4E94" }, { "six", "roku - \u516D" }, { "seven", "shichi - \u4E03" }, { "eight", "hachi - \u516B" }, { "nine", "kyu - \u4E5D" }, { "ten", "ju - \u5341" } }; Object headers[] = { "English", "Japanese" }; JFrame frame = new JFrame("Scrollless Table"); JTable table = new JTable(rows, headers); frame.getContentPane().add(table, BorderLayout.CENTER); frame.setSize(300, 150);// w w w . j a va2 s. co m frame.setVisible(true); }
From source file:Clipping.java
public static void main(String[] args) { JFrame frame = new JFrame(); frame.add(new Clipping()); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(400, 400);//from w w w .j ava 2 s . c om frame.setVisible(true); }
From source file:Main.java
public static void main(String[] args) { JFrame frame = new JFrame("Composition"); frame.add(new CompositingDST_ATOP()); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(400, 120);/* ww w .j a va2s . co m*/ frame.setVisible(true); }
From source file:Main.java
public static void main(String[] args) { JFrame f = new JFrame("Text Field Elements"); JTextField tf = new JTextField(32); tf.setText("That's one small step for man..."); f.getContentPane().add(tf);// ww w .j a v a 2 s .c o m f.pack(); f.setVisible(true); ((AbstractDocument) tf.getDocument()).dump(System.out); }
From source file:Main.java
public static void main(String argv[]) { Main pane = new Main(); for (int n = 1; n <= 4; n += 1) { pane.append(Color.black, String.valueOf(n) + ' '); }/*from w w w. j a v a 2 s.co m*/ JFrame f = new JFrame("ColorPane example"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setContentPane(new JScrollPane(pane)); f.setSize(600, 400); f.setVisible(true); }
From source file:ColorPan.java
public static void main(String[] args) { JFrame frame = new JFrame("ColorPan"); frame.getContentPane().add(new ColorPan()); frame.setSize(300, 300);//from w w w.ja va 2 s. c om frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); }
From source file:Main.java
public static void main(String[] args) { JFrame aWindow = new JFrame(); aWindow.setBounds(200, 200, 200, 200); aWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); aWindow.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR)); aWindow.setVisible(true); }
From source file:Main.java
public static void main(String args[]) { JPanel panel = new JPanel(new BorderLayout()); JLabel label = new JLabel("Name: "); label.setDisplayedMnemonic(KeyEvent.VK_N); JTextField textField = new JTextField(); textField.setHorizontalAlignment(JTextField.CENTER); label.setLabelFor(textField);/*from w w w . j av a 2 s .c o m*/ panel.add(label, BorderLayout.WEST); panel.add(textField, BorderLayout.CENTER); JFrame frame = new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.add(panel, BorderLayout.NORTH); frame.setSize(250, 150); frame.setVisible(true); }
From source file:Main.java
public static void main(String[] args) { JFrame frame = new JFrame(); frame.add(new Main()); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLocationByPlatform(true);// w w w . j a va 2 s. com frame.pack(); frame.setVisible(true); }
From source file:MainClass.java
public static void main(String[] argv) { MainClass panel = new MainClass(); JFrame frame = new JFrame("Arabic Digits"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().add("Center", panel); frame.pack();/*from w ww . j a v a 2s. c om*/ frame.setVisible(true); }