Ejemplo n.º 1
0
 public void addInlineArea(InlineArea box, LinkSet ls)
 {
     addPending();
     addChild(box);
     if (ls != null)
     {
         Rectangle lr = new Rectangle(finalWidth, 0, box.getContentWidth(), box.getContentHeight());
         ls.addRect(lr, this, box);
     }
     prev = TEXT;
     finalWidth += box.getContentWidth();
 }