You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }