Package net.sf.jasperreports.engine
Interface JRVisitor
-
- All Known Subinterfaces:
ElementsVisitor
- All Known Implementing Classes:
ConvertVisitor,CrosstabDeepVisitor,DatasetCloneObjectFactory,DatasetExecution.ObjectFactory,DrawVisitor,FillListDatasetFactory,IconLabelFillObjectFactory,JRAbstractObjectFactory,JRBaseObjectFactory,JRDelegationVisitor,JRElementsVisitor,JRFillCrosstabObjectFactory,JRFillObjectFactory,JRVisitorSupport,TableReportBaseObjectFactory,UniformElementVisitor,XmlWriterVisitor
public interface JRVisitor- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisitBreak(JRBreak breakElement)voidvisitChart(JRChart chart)voidvisitComponentElement(JRComponentElement componentElement)Visits a component wrapper element.voidvisitCrosstab(JRCrosstab crosstab)voidvisitElementGroup(JRElementGroup elementGroup)voidvisitEllipse(JREllipse ellipse)voidvisitFrame(JRFrame frame)voidvisitGenericElement(JRGenericElement element)Visits a generic report element.voidvisitImage(JRImage image)voidvisitLine(JRLine line)voidvisitRectangle(JRRectangle rectangle)voidvisitStaticText(JRStaticText staticText)voidvisitSubreport(JRSubreport subreport)voidvisitTextField(JRTextField textField)
-
-
-
Method Detail
-
visitBreak
void visitBreak(JRBreak breakElement)
-
visitChart
void visitChart(JRChart chart)
-
visitCrosstab
void visitCrosstab(JRCrosstab crosstab)
-
visitElementGroup
void visitElementGroup(JRElementGroup elementGroup)
-
visitEllipse
void visitEllipse(JREllipse ellipse)
-
visitFrame
void visitFrame(JRFrame frame)
-
visitImage
void visitImage(JRImage image)
-
visitLine
void visitLine(JRLine line)
-
visitRectangle
void visitRectangle(JRRectangle rectangle)
-
visitStaticText
void visitStaticText(JRStaticText staticText)
-
visitSubreport
void visitSubreport(JRSubreport subreport)
-
visitTextField
void visitTextField(JRTextField textField)
-
visitComponentElement
void visitComponentElement(JRComponentElement componentElement)
Visits a component wrapper element.- Parameters:
componentElement- the element to visit
-
visitGenericElement
void visitGenericElement(JRGenericElement element)
Visits a generic report element.- Parameters:
element- the element to visit
-
-