List of usage examples for org.apache.poi.xslf.usermodel XSLFTextParagraph getBulletCharacter
@SuppressWarnings("WeakerAccess") public String getBulletCharacter()
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 v a2 s . c o m*/ return ""; // No bullets }