Class HtmlExporter.CellElementVisitor
- java.lang.Object
-
- net.sf.jasperreports.engine.export.HtmlExporter.CellElementVisitor
-
- All Implemented Interfaces:
PrintElementVisitor<TableCell>
- Enclosing class:
- HtmlExporter
protected class HtmlExporter.CellElementVisitor extends Object implements PrintElementVisitor<TableCell>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CellElementVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visit(JRGenericPrintElement printElement, TableCell cell)
Visits a generic print element.void
visit(JRPrintEllipse ellipse, TableCell cell)
Visits a print ellipse.void
visit(JRPrintFrame frame, TableCell cell)
Visits a print frame.void
visit(JRPrintImage image, TableCell cell)
Visits a print image.void
visit(JRPrintLine line, TableCell cell)
Visits a print line.void
visit(JRPrintRectangle rectangle, TableCell cell)
Visits a print rectangle.void
visit(JRPrintText textElement, TableCell cell)
Visits a text print element.
-
-
-
Method Detail
-
visit
public void visit(JRPrintText textElement, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a text print element.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
textElement
- the element to visitcell
- an argument passed for the visit
-
visit
public void visit(JRPrintImage image, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a print image.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
image
- the image to visitcell
- an argument passed for the visit
-
visit
public void visit(JRPrintRectangle rectangle, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a print rectangle.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
rectangle
- the rectangle to visitcell
- an argument passed for the visit
-
visit
public void visit(JRPrintLine line, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a print line.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
line
- the line to visitcell
- an argument passed for the visit
-
visit
public void visit(JRPrintEllipse ellipse, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a print ellipse.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
ellipse
- the ellipse to visitcell
- an argument passed for the visit
-
visit
public void visit(JRPrintFrame frame, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a print frame.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
frame
- the frame to visitcell
- an argument passed for the visit
-
visit
public void visit(JRGenericPrintElement printElement, TableCell cell)
Description copied from interface:PrintElementVisitor
Visits a generic print element.- Specified by:
visit
in interfacePrintElementVisitor<TableCell>
- Parameters:
printElement
- the element to visitcell
- an argument passed for the visit
-
-