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

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

Introduction

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

Prototype

public boolean isBullet() 

Source Link

Document

Returns whether this paragraph has bullets

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 va 2s  . c  om
    return ""; // No bullets
}