Interface BlockStatistics
-
- All Known Implementing Classes:
AbstractBlockContentManager
,BlockContentManager
public interface BlockStatistics
TODO: Write java doc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getForceBreakCount()
Gets the number of forced line breaks.int
getMinimumAvailableWidth()
Gets the minimum width available for content (excluding margins).int
getRowCount()
Gets the number of rows produced.
-
-
-
Method Detail
-
getForceBreakCount
int getForceBreakCount()
Gets the number of forced line breaks.- Returns:
- the number of forced line breaks
- Throws:
IllegalStateException
- if the force break count cannot be returned
-
getMinimumAvailableWidth
int getMinimumAvailableWidth()
Gets the minimum width available for content (excluding margins).- Returns:
- returns the available width, in characters
-
getRowCount
int getRowCount()
Gets the number of rows produced.- Returns:
- the number of rows produced
- Throws:
IllegalStateException
- if the row count cannot be returned
-
-