this is what i have tried and i havent been able to get it to pop up
public static void main(String[]args){
}
public void run(){
JFrame frame = new JFrame("Test Frame");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}

