Uses of Class
net.sf.jasperreports.engine.TabStop
-
Packages that use TabStop Package Description net.sf.jasperreports.engine Provides access to the library's main functionality through facade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes.net.sf.jasperreports.engine.base Contains base implementations for the library's main interfaces.net.sf.jasperreports.engine.export Provides utility classes for exporting reports to various popular formats such as PDF, HTML, RTF, CSV, Excel, DOCX, PPTX, ODT, ODS, XML, Text, etc.net.sf.jasperreports.engine.fill Contains fill time implementations for the library's main interfaces and the entire engine used in the filling process (the actual core of JasperReports).net.sf.jasperreports.engine.util Contains utility classes for the core library. -
-
Uses of TabStop in net.sf.jasperreports.engine
Methods in net.sf.jasperreports.engine that return TabStop Modifier and Type Method Description TabStop[]
JRParagraph. getOwnTabStops()
Gets the custom tab stops.TabStop[]
JRParagraph. getTabStops()
Gets the custom tab stops.Methods in net.sf.jasperreports.engine with parameters of type TabStop Modifier and Type Method Description void
JRParagraph. addTabStop(int index, TabStop tabStop)
void
JRParagraph. addTabStop(TabStop tabStop)
void
JRParagraph. removeTabStop(TabStop tabStop)
-
Uses of TabStop in net.sf.jasperreports.engine.base
Fields in net.sf.jasperreports.engine.base with type parameters of type TabStop Modifier and Type Field Description protected List<TabStop>
JRBaseParagraph. tabStopsList
Methods in net.sf.jasperreports.engine.base that return TabStop Modifier and Type Method Description TabStop[]
JRBaseParagraph. getOwnTabStops()
TabStop[]
JRBaseParagraph. getTabStops()
Methods in net.sf.jasperreports.engine.base with parameters of type TabStop Modifier and Type Method Description void
JRBaseParagraph. addTabStop(int index, TabStop tabStop)
void
JRBaseParagraph. addTabStop(TabStop tabStop)
void
JRBaseParagraph. removeTabStop(TabStop tabStop)
-
Uses of TabStop in net.sf.jasperreports.engine.export
Methods in net.sf.jasperreports.engine.export with parameters of type TabStop Modifier and Type Method Description void
JRXmlExporter. exportTabStop(TabStop tabStop)
-
Uses of TabStop in net.sf.jasperreports.engine.fill
Methods in net.sf.jasperreports.engine.fill that return TabStop Modifier and Type Method Description TabStop[]
CachingParagraph. getOwnTabStops()
TabStop[]
CachingParagraph. getTabStops()
Methods in net.sf.jasperreports.engine.fill with parameters of type TabStop Modifier and Type Method Description void
CachingParagraph. addTabStop(int index, TabStop tabStop)
void
CachingParagraph. addTabStop(TabStop tabStop)
void
CachingParagraph. removeTabStop(TabStop tabStop)
protected boolean
TextMeasurer. renderNextLine(TextLineWrapper lineWrapper, List<Integer> tabIndexes, int[] currentTabHolder, TabStop[] nextTabStopHolder, boolean[] requireNextWordHolder)
-
Uses of TabStop in net.sf.jasperreports.engine.util
Methods in net.sf.jasperreports.engine.util that return TabStop Modifier and Type Method Description static TabStop
ParagraphUtil. getFirstTabStop(JRParagraph paragraph, float endX)
static TabStop
ParagraphUtil. getLastTabStop(JRParagraph paragraph, float endX)
static TabStop
ParagraphUtil. getNextTabStop(JRParagraph paragraph, float endX, float rightX)
static TabStop[]
ParagraphUtil. getTabStops(JRParagraph paragraph, float endX)
TabStop[]
StyleResolver. getTabStops(JRParagraph paragraph)
Methods in net.sf.jasperreports.engine.util with parameters of type TabStop Modifier and Type Method Description static float
ParagraphUtil. getLeftX(TabStop tabStop, float advance)
static float
ParagraphUtil. getRightX(TabStop tabStop, float advance)
static float
ParagraphUtil. getSegmentOffset(TabStop tabStop, float rightX)
-