public int getSpacesWidth(int size) { if (mySpaceWidth == -1) { TextLine textLine = new TextLine(" "); textLine.relayout(); mySpaceWidth = textLine.getWidth(); } return mySpaceWidth * size; }