Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active June 14, 2022 07:29
Show Gist options
  • Save uncoded-ro/856d0d9935cedfbc0c76735eeb3660dd to your computer and use it in GitHub Desktop.
Save uncoded-ro/856d0d9935cedfbc0c76735eeb3660dd to your computer and use it in GitHub Desktop.
package ro.virtualcampus.gui;
import javax.swing.JFrame;
class ListApp extends JFrame {
private static final long serialVersionUID = 1L;
public ListApp() {
super("List");
}
public static void main(String args[]) {
ListApp app = new ListApp();
ListPanel lsp = new ListPanel();
app.add(lsp);
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
app.pack();
app.setVisible(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment