package kurki; public class KurkiApp { boolean packFrame = false; //Construct the application public KurkiApp() { cKurki frame = new cKurki(); //Pack frames that have useful preferred size info, e.g. from their layout //Validate frames that have preset sizes if (packFrame) frame.pack(); else frame.validate(); frame.setVisible(true); } //Main method static public void main(String[] args) { new KurkiApp(); } }