Skip to content

Instantly share code, notes, and snippets.

@kkarad
Created March 14, 2011 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkarad/869126 to your computer and use it in GitHub Desktop.
Save kkarad/869126 to your computer and use it in GitHub Desktop.
public class PanelViewer {
public static void main(String[] args) {
JFrame frame = new JFrame("Gui Test");
frame.getContentPane().setLayout(new FlowLayout());
//frame.add(new PerspectivePanel());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment