List of usage examples for org.apache.poi.hssf.record EscherAggregate getEscherRecords
public List<EscherRecord> getEscherRecords()
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; }