Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

DrawingTableCell.java 463B

1234567891011121314151617
  1. package org.apache.poi.xslf.usermodel;
  2. import org.openxmlformats.schemas.drawingml.x2006.main.CTTableCell;
  3. public class DrawingTableCell {
  4. private final CTTableCell cell;
  5. private final DrawingTextBody drawingTextBody;
  6. public DrawingTableCell(CTTableCell cell) {
  7. this.cell = cell;
  8. drawingTextBody = new DrawingTextBody(this.cell.getTxBody());
  9. }
  10. public DrawingTextBody getTextBody() {
  11. return drawingTextBody;
  12. }
  13. }