Package net.sf.jasperreports.engine.util
Class CompositePrintElementVisitor<T>
- java.lang.Object
-
- net.sf.jasperreports.engine.util.CompositePrintElementVisitor<T>
-
- All Implemented Interfaces:
PrintElementVisitor<T>
public class CompositePrintElementVisitor<T> extends Object implements PrintElementVisitor<T>
A print element visitor that contains several visitors to which it delegates calls.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description CompositePrintElementVisitor(PrintElementVisitor<T>... visitors)Creates a composite visitor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidvisit(JRGenericPrintElement printElement, T arg)Visits a generic print element.voidvisit(JRPrintEllipse ellipse, T arg)Visits a print ellipse.voidvisit(JRPrintFrame frame, T arg)Visits a print frame.voidvisit(JRPrintImage image, T arg)Visits a print image.voidvisit(JRPrintLine line, T arg)Visits a print line.voidvisit(JRPrintRectangle rectangle, T arg)Visits a print rectangle.voidvisit(JRPrintText textElement, T arg)Visits a text print element.
-
-
-
Constructor Detail
-
CompositePrintElementVisitor
public CompositePrintElementVisitor(PrintElementVisitor<T>... visitors)
Creates a composite visitor.- Parameters:
visitors- the visitors to delegate calls to
-
-
Method Detail
-
visit
public void visit(JRPrintText textElement, T arg)
Description copied from interface:PrintElementVisitorVisits a text print element.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
textElement- the element to visitarg- an argument passed for the visit
-
visit
public void visit(JRPrintImage image, T arg)
Description copied from interface:PrintElementVisitorVisits a print image.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
image- the image to visitarg- an argument passed for the visit
-
visit
public void visit(JRPrintRectangle rectangle, T arg)
Description copied from interface:PrintElementVisitorVisits a print rectangle.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
rectangle- the rectangle to visitarg- an argument passed for the visit
-
visit
public void visit(JRPrintLine line, T arg)
Description copied from interface:PrintElementVisitorVisits a print line.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
line- the line to visitarg- an argument passed for the visit
-
visit
public void visit(JRPrintEllipse ellipse, T arg)
Description copied from interface:PrintElementVisitorVisits a print ellipse.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
ellipse- the ellipse to visitarg- an argument passed for the visit
-
visit
public void visit(JRPrintFrame frame, T arg)
Description copied from interface:PrintElementVisitorVisits a print frame.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
frame- the frame to visitarg- an argument passed for the visit
-
visit
public void visit(JRGenericPrintElement printElement, T arg)
Description copied from interface:PrintElementVisitorVisits a generic print element.- Specified by:
visitin interfacePrintElementVisitor<T>- Parameters:
printElement- the element to visitarg- an argument passed for the visit
-
-