Package br.com.jteam.jfcm.controller.listener

Examples of br.com.jteam.jfcm.controller.listener.CloseAboutDialogListener


    setTitle(BaseBundle.getValue("dialog.about.caption"));
    setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
    setModal(true);
    setPreferredSize(new Dimension(750, 550));
    add(createContentPanel());
    addKeyListener(new CloseAboutDialogListener(this));
    pack();
    centerWindow();
    setVisible(true);
  }
View Full Code Here

TOP

Related Classes of br.com.jteam.jfcm.controller.listener.CloseAboutDialogListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.