Exemplo n.º 1
0
 /** Render this sheet into the supplied graphics object */
 @Override
 protected boolean canDraw(XSLFShape shape) {
   if (shape instanceof XSLFSimpleShape) {
     XSLFSimpleShape txt = (XSLFSimpleShape) shape;
     CTPlaceholder ph = txt.getCTPlaceholder();
     if (ph != null) {
       return false;
     }
   }
   return true;
 }