List of usage examples for org.apache.poi.xslf.usermodel XSLFTextParagraph isBullet
public boolean isBullet()
From source file:org.joeffice.presentation.ShapeComponent.java
License:Apache License
private String getBullet(XSLFTextParagraph paragraph) { if (paragraph.isBullet()) { return paragraph.getBulletCharacter(); }//from w w w . j a va 2s . c om return ""; // No bullets }