Java Swing Visual Editor HELP please
Posted
by bat
on Stack Overflow
See other posts from Stack Overflow
or by bat
Published on 2010-06-05T05:26:43Z
Indexed on
2010/06/05
6:12 UTC
Read the original article
Hit count: 168
How would i call this function in my main?
private JFrame getMainpageframe1() {
if (mainpageframe1 == null) {
mainpageframe1 = new JFrame();
mainpageframe1.setSize(new Dimension(315, 306));
mainpageframe1.setContentPane(getMainpage());
mainpageframe1.setTitle("Shopping For Less: Main Page");
mainpageframe1.setVisible(true);
mainpageframe1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
return mainpageframe1;
}
public static void main(String[] args) {
//call that function to output the JFrame?
}
thanks
© Stack Overflow or respective owner