Package GUI

Examples of GUI.ventanaNotificaciones


   
    /**
     * método que muestra una ventana de bienvenida
     */
    public static void bienvenida(){
        new ventanaNotificaciones().setVisible(true);
    }
View Full Code Here


    public static void bienvenida(){
        new ventanaNotificaciones().setVisible(true);
    }
   
    public static void ingredientesAgotados(String ingrediente) {
        new ventanaNotificaciones("Ingredientes Agotados","Lo sentimos pero el ingrediente "+ingrediente+" está a punto de agotarse").setVisible(true);
    }
View Full Code Here

     * @param titulo El tíulo de la ventana
     * @param mensaje El mensaje soporta HTML4
     */
    public static void alertaPersonalizada(String titulo,String mensaje) {
        //TODO tal vez se vería mejor con opacidad 50 setOpacity(0.5f);
        new ventanaNotificaciones(titulo,mensaje).setVisible(true);
    }
View Full Code Here

TOP

Related Classes of GUI.ventanaNotificaciones

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.