Ejemplo n.º 1
0
 public void setTextIndent(ITextContent content) {
   int ip = lineParent.getCurrentIP();
   lineParent.setTextIndent(content);
   if (ip != lineParent.getCurrentIP()) {
     maxAvaWidth = parent.getCurrentMaxContentWidth();
   }
 }
Ejemplo n.º 2
0
 public void endLine(boolean endParagraph) throws BirtException {
   lineCount++;
   if (getChildrenCount() > 0) {
     close(false);
   }
   if (lineParent != null) {
     lineParent.endLine(endParagraph);
     initialize();
   }
 }
Ejemplo n.º 3
0
 public boolean isEmptyLine() {
   if (getChildrenCount() > 0) {
     return false;
   }
   return lineParent.isEmptyLine();
 }
Ejemplo n.º 4
0
 public int getMaxLineWidth() {
   return lineParent.getMaxLineWidth();
 }