com.java4less.rreport
Interface ExportLayer

All Known Implementing Classes:
CsvLayer, DHTMLLayer, PDFLayer, TextLayer, XmlLayer

public interface ExportLayer

classes used to export reports to external formats (PDF, DHTML ...) must implement this interface


Method Summary
 void close()
          close Document
 java.lang.String getName()
          get name of this layer
 void newPage()
          create a new page
 void print(RObject o, double x, double y, java.lang.Object Value)
          add object to the Document at the given position (in pixels).
 

Method Detail

newPage

public void newPage()
             throws java.lang.Exception
create a new page

close

public void close()
close Document

getName

public java.lang.String getName()
get name of this layer

print

public void print(RObject o,
                  double x,
                  double y,
                  java.lang.Object Value)
add object to the Document at the given position (in pixels).