class Torrone::Exporters::Csv
Public Instance Methods
export(jasper_print)
click to toggle source
Calls superclass method
Torrone::Exporters::Base#export
# File lib/torrone/exporters/csv.rb, line 4 def export(jasper_print) super(jasper_print) do |exporter, configuration| #configuration.setOnePagePerSheet(true); end end
Protected Instance Methods
exporter_class()
click to toggle source
# File lib/torrone/exporters/csv.rb, line 12 def exporter_class Rjb::import 'net.sf.jasperreports.engine.export.JRCsvExporter' end
report_configuration_class()
click to toggle source
# File lib/torrone/exporters/csv.rb, line 16 def report_configuration_class Rjb::import 'net.sf.jasperreports.export.SimpleCsvReportConfiguration' end