Package com.dataman.prometeo.swing

Source Code of com.dataman.prometeo.swing.Styles

/*
* Cabezas.java
*
* Created on 10 de noviembre de 2002, 08:35 AM
*/

package com.dataman.prometeo.swing;
import com.dataman.prometeo.core.Valida;
/**
*
* @author  Administrador
*/
public class Styles {
   
    /** Creates a new instance of Cabezas */
    public Styles() {
    }
    public String top(){
        String html="<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">";
            html+="<HTML><HEAD></HEAD><BODY><FONT SIZE=5>" +
            "<CENTER>ANTIGUO ARTE EUROPEO CD. VICTORIA</FONT><BR>"+
            "<FONT SIZE=3>EJIDIO TORRE # 247 CODIGO POSTAL 87027<BR>" +   
            "<FONT SIZE=3>PROPIETARIA: DIANA LUNA HERNANDEZ<BR>RFC. LUHD6612073D9</FONT><BR><BR>";
    return html;
    }
    public String tipo(String tipo){
        String html = "REPORTE DE " + tipo + "CON FECHA:" +
            new Valida().fecha() + "<BR>";
        return html;
    }
   
}
TOP

Related Classes of com.dataman.prometeo.swing.Styles

TOP
Copyright © 2018 www.massapi.com. 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.