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

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

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

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

/**
* @author William Pivotto
*/

@Component
public class Xhtml extends AbstractExporter {

  public String getContentType() {
    return "text/html";
  }

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

  public JRExporter setup() {
    return new JRXhtmlExporter();
  }
 
}
TOP

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

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.