| java.lang.Object net.sf.jasperreports.engine.JRPrintElementIndex
JRPrintElementIndex | public class JRPrintElementIndex (Code) | | author: Teodor Danciu (teodord@users.sourceforge.net) version: $Id: JRPrintElementIndex.java 1650 2007-03-22 16:28:57Z teodord $ |
JRPrintElementIndex | public JRPrintElementIndex(int reportIndex, int pageIndex, String address)(Code) | | |
getPageIndex | public int getPageIndex()(Code) | | |
getReportIndex | public int getReportIndex()(Code) | | |
parsePrintElementIndex | public static JRPrintElementIndex parsePrintElementIndex(String indexStr)(Code) | | Parses a String representation as obtained by
JRPrintElementIndex.toString() toString() back
into an element index instance.
Parameters: indexStr - the String representation of an element index an element index instance corresponding to the String representation |
toString | public String toString()(Code) | | public Integer[] getElementIndexes()
{
return (Integer[]) elementIndexes.toArray(new Integer[elementIndexes.size()]);
}
/**
Returns a String representation of this element index.
The representation is obtained by appending all the indexes that compose this instance.
The result is compatible with
JRPrintElementIndex.parsePrintElementIndex(String) parsePrintElementIndex(String) ,
which can be used to recreate the elemetn index instance from a String representation.
|
|
|