Uses of Class
net.sf.jasperreports.engine.JRPrintElementIndex

Packages that use JRPrintElementIndex
net.sf.jasperreports.engine Provides access to the library's main functionality through fa?ade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes. 
net.sf.jasperreports.engine.export Provides utility classes for exporting reports to various popular formats. 
net.sf.jasperreports.engine.export.oasis   
 

Uses of JRPrintElementIndex in net.sf.jasperreports.engine
 

Methods in net.sf.jasperreports.engine that return JRPrintElementIndex
static JRPrintElementIndex JRPrintElementIndex.parsePrintElementIndex(java.lang.String indexStr)
          Parses a String representation as obtained by toString() back into an element index instance.
 

Uses of JRPrintElementIndex in net.sf.jasperreports.engine.export
 

Methods in net.sf.jasperreports.engine.export that return JRPrintElementIndex
protected  JRPrintElementIndex JRHtmlExporter.getElementIndex(JRExporterGridCell gridCell)
           
static JRPrintElementIndex JRHtmlExporter.getPrintElementIndex(java.lang.String imageName)
           
 

Methods in net.sf.jasperreports.engine.export with parameters of type JRPrintElementIndex
static JRPrintImage JRHtmlExporter.getImage(java.util.List jasperPrintList, JRPrintElementIndex imageIndex)
           
static java.lang.String JRHtmlExporter.getImageName(JRPrintElementIndex printElementIndex)
           
 

Uses of JRPrintElementIndex in net.sf.jasperreports.engine.export.oasis
 

Methods in net.sf.jasperreports.engine.export.oasis that return JRPrintElementIndex
protected  JRPrintElementIndex JROdtExporter.getElementIndex(JRExporterGridCell gridCell)
           
static JRPrintElementIndex JROdtExporter.getPrintElementIndex(java.lang.String imageName)
           
 

Methods in net.sf.jasperreports.engine.export.oasis with parameters of type JRPrintElementIndex
protected  void JROdtExporter.exportGrid(JRGridLayout gridLayout, JRPrintElementIndex frameIndex)
           
static JRPrintImage JROdtExporter.getImage(java.util.List jasperPrintList, JRPrintElementIndex imageIndex)
           
static java.lang.String JROdtExporter.getImageName(JRPrintElementIndex printElementIndex)
          protected void writeImageMap(String imageMapName, JRPrintHyperlink mainHyperlink, List imageMapAreas) throws IOException { writer.write("\n"); for (Iterator it = imageMapAreas.iterator(); it.hasNext();) { JRPrintImageAreaHyperlink areaHyperlink = (JRPrintImageAreaHyperlink) it.next(); JRPrintImageArea area = areaHyperlink.getArea(); writer.write(" \n"); } if (mainHyperlink.getHyperlinkType() != JRHyperlink.HYPERLINK_TYPE_NONE) { writer.write(" \n"); } writer.write("\n"); } protected void writeImageAreaCoordinates(JRPrintImageArea area) throws IOException { int[] coords = area.getCoordinates(); if (coords != null && coords.length > 0) { StringBuffer coordsEnum = new StringBuffer(coords.length * 4); coordsEnum.append(coords[0]); for (int i = 1; i < coords.length; i++) { coordsEnum.append(','); coordsEnum.append(coords[i]); } writer.write(" coords=\"" + coordsEnum + "\""); } } protected void writeImageAreaHyperlink(JRPrintHyperlink hyperlink) throws IOException { String href = getHyperlinkURL(hyperlink); if (href == null) { writer.write(" nohref=\"nohref\""); } else { writer.write(" href=\"" + href + "\""); String target = getHyperlinkTarget(hyperlink); if (target != null) { writer.write(" target=\""); writer.write(target); writer.write("\""); } } if (hyperlink.getHyperlinkTooltip() != null) { writer.write(" title=\""); writer.write(JRStringUtil.xmlEncode(hyperlink.getHyperlinkTooltip())); writer.write("\""); } } /**
 



© 2001-2006 JasperSoft Corporation www.jaspersoft.com