Example usage for org.apache.poi.xslf.usermodel XSLFTextParagraph getBulletCharacter

List of usage examples for org.apache.poi.xslf.usermodel XSLFTextParagraph getBulletCharacter

Introduction

In this page you can find the example usage for org.apache.poi.xslf.usermodel XSLFTextParagraph getBulletCharacter.

Prototype

@SuppressWarnings("WeakerAccess")
public String getBulletCharacter() 

Source Link

Usage

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
}