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 protectedCellElementVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidvisit(JRGenericPrintElement printElement, TableCell cell)Visits a generic print element.voidvisit(JRPrintEllipse ellipse, TableCell cell)Visits a print ellipse.voidvisit(JRPrintFrame frame, TableCell cell)Visits a print frame.voidvisit(JRPrintImage image, TableCell cell)Visits a print image.voidvisit(JRPrintLine line, TableCell cell)Visits a print line.voidvisit(JRPrintRectangle rectangle, TableCell cell)Visits a print rectangle.voidvisit(JRPrintText textElement, TableCell cell)Visits a text print element.
-
-
-
Method Detail
-
visit
public void visit(JRPrintText textElement, TableCell cell)
Description copied from interface:PrintElementVisitorVisits a text print element.- Specified by:
visitin 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:PrintElementVisitorVisits a print image.- Specified by:
visitin 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:PrintElementVisitorVisits a print rectangle.- Specified by:
visitin 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:PrintElementVisitorVisits a print line.- Specified by:
visitin 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:PrintElementVisitorVisits a print ellipse.- Specified by:
visitin 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:PrintElementVisitorVisits a print frame.- Specified by:
visitin 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:PrintElementVisitorVisits a generic print element.- Specified by:
visitin interfacePrintElementVisitor<TableCell>- Parameters:
printElement- the element to visitcell- an argument passed for the visit
-
-