listed templates can be selected by space, move the tests to community

This commit is contained in:
peter
2012-02-15 16:37:49 +01:00
parent fe13245171
commit 51647b8898
20 changed files with 609 additions and 1 deletions
@@ -0,0 +1,9 @@
public class EndInTheMiddle {
public static void main(String[] args) {
javax.swing.JFrame frame = new javax.swing.JFrame();
<caret>
frame.setVisible(true);
frame.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
frame.pack();
}
}