List of usage examples for javax.swing JFrame show
@Deprecated public void show()
From source file:TexturePaintFill.java
public static void main(String[] args) throws Exception { JFrame f = new JFrame(); f.getContentPane().add(new TexturePaintFill()); f.setSize(350, 250);/*from w ww . j a v a 2s . com*/ f.show(); }
From source file:TextHitInfoDemo.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new TextHitInfoDemo()); f.setSize(200, 200);/*ww w .j a v a2s.c o m*/ f.show(); }
From source file:Main.java
public static void main(String[] args) { JFrame frame = new TextBoundaryFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.pack();//from w w w . j ava2 s . c o m frame.show(); }
From source file:ParagraphLayout.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new ParagraphLayout()); f.setSize(350, 250);// w w w . j a v a 2 s . c om f.show(); }
From source file:TexturedText.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new TexturedText()); f.setSize(800, 250);/*from w w w . java 2 s . c o m*/ f.show(); }
From source file:BoxLayoutTest.java
public static void main(String[] args) { JFrame f = new BoxLayoutTest(); f.show(); }
From source file:MouseTest.java
public static void main(String args[]) { JFrame frame = new MouseTest(); frame.setSize(300, 300);//w w w . j ava2 s . c om frame.show(); }
From source file:SmoothMove.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new SmoothMove()); f.setSize(200, 200);/*from w ww . j av a2 s . co m*/ f.show(); }
From source file:ColorBlocks.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new ColorBlocks()); f.setSize(350, 250);// ww w . ja va 2 s. c o m f.show(); }
From source file:LineMetricsIllustration.java
public static void main(String[] args) { JFrame f = new JFrame(); f.getContentPane().add(new LineMetricsIllustration()); f.setSize(850, 250);/*w w w.j a v a2s .c o m*/ f.show(); }