ArrayList<Integer> lineHeights = new ArrayList<Integer>();
//StyleContext context = StyleContext.getDefaultStyleContext();
for(int x = 0; x < size; x++)
{
PapxNode node = (PapxNode)paragraphs.get(x);
int parStart = Math.max(node.getStart(), start);
int parEnd = Math.min(node.getEnd(), end);
int lineWidth = 0;
int maxHeight = 0;
ArrayList<PropertyNode> textRuns = findProperties(parStart, parEnd, _characterTable.root);
int charSize = textRuns.size();
//StringBuffer lineBuffer = new StringBuffer();
for(int y = 0; y < charSize; y++)
{
ChpxNode charNode = (ChpxNode)textRuns.get(y);
int istd = Utils.convertBytesToShort(node.getPapx(), 0);
StyleDescription sd = _styleSheet.getStyleDescription(istd);
CHP chp = (CHP)StyleSheet.uncompressProperty(charNode.getChpx(), sd.getCHP(), _styleSheet);
//get Font info
//FontMetrics metrics = getFontMetrics(chp, context);