Package net.sourceforge.jiu.gui.awt.dialogs

Examples of net.sourceforge.jiu.gui.awt.dialogs.InfoDialog


   * @param title will be displayed in the dialog's title bar
   * @param text will be displayed in the dialog's center part
   */
  public void showInfo(String title, String text)
  {
    InfoDialog d = new InfoDialog(this, title, text);
    d.setVisible(true);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jiu.gui.awt.dialogs.InfoDialog

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.