Package org.analyse.core.gui

Examples of org.analyse.core.gui.HtmlWindow


    return JOptionPane.showConfirmDialog(org.analyse.main.Main.analyseFrame, question, Utilities.getLangueMessage ("analysesi"), JOptionPane.YES_NO_OPTION;
  }
 
    public static void messageHTML(String text)
    {
      HtmlWindow f = new HtmlWindow(text, 500, 400,
                true, false);
    }
View Full Code Here


                true, false);
    }
   
    public static void messageHTML(String text, boolean closeAfter2sec)
    {
      HtmlWindow f = new HtmlWindow(text, 500, 400,
                true, closeAfter2sec);
    }
View Full Code Here

                true, closeAfter2sec);
    }
   
    public static void messageHTML(String text, boolean closeAfter2sec, int width, int height)
    {
      HtmlWindow f = new HtmlWindow(text, width, height,
                true, closeAfter2sec);
    }  
View Full Code Here

TOP

Related Classes of org.analyse.core.gui.HtmlWindow

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.