Example usage for org.apache.poi.hssf.record EscherAggregate getEscherRecords

List of usage examples for org.apache.poi.hssf.record EscherAggregate getEscherRecords

Introduction

In this page you can find the example usage for org.apache.poi.hssf.record EscherAggregate getEscherRecords.

Prototype

public List<EscherRecord> getEscherRecords() 

Source Link

Usage

From source file:com.haulmont.yarg.formatters.impl.xls.HSSFPicturesHelper.java

License:Apache License

public static List<HSSFClientAnchor> getAllAnchors(EscherAggregate escherAggregate) {
    List<HSSFClientAnchor> pictures = new ArrayList<HSSFClientAnchor>();
    if (escherAggregate == null)
        return Collections.emptyList();
    List<EscherRecord> escherRecords = escherAggregate.getEscherRecords();
    searchForAnchors(escherRecords, pictures);
    return pictures;
}