enableEvents(AWTEvent.WINDOW_EVENT_MASK); try { jbInit(); } catch (Exception e) { e.printStackTrace(); }
this.setTitle("Date Bean"); db.setUseMonthString(true); db.setStyle(DateBean.MONTH_DAY_YEAR); this.getContentPane().setLayout(borderLayout1); this.getContentPane().add(jPanel1, BorderLayout.CENTER); jPanel1.add(db, null);
TestFrame t = new TestFrame(); t.pack(); t.show();
super.processWindowEvent(e); if (e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); }