Package br.com.caelum.vraptor.jasperreports.formats

Source Code of br.com.caelum.vraptor.jasperreports.formats.Rtf

package br.com.caelum.vraptor.jasperreports.formats;

import net.sf.jasperreports.engine.JRExporter;
import net.sf.jasperreports.engine.export.JRTextExporter;
import net.sf.jasperreports.engine.export.JRTextExporterParameter;
import br.com.caelum.vraptor.ioc.Component;

/**
* @author William Pivotto
*/

@Component
public class Rtf extends AbstractExporter {

  public JRExporter setup() {
    configure(JRTextExporterParameter.CHARACTER_WIDTH, 5f);
    configure(JRTextExporterParameter.CHARACTER_HEIGHT, 20f);
    return new JRTextExporter();
  }

  public String getContentType() {
    return "application/rtf";
  }

  public String getExtension() {
    return "rtf";
  }

}
TOP

Related Classes of br.com.caelum.vraptor.jasperreports.formats.Rtf

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.