package jxl.biff.drawing;

import common.Logger;

/* JADX INFO: loaded from: classes.dex */
class BStoreContainer extends EscherContainer {
    static /* synthetic */ Class class$jxl$biff$drawing$BStoreContainer;
    private static Logger logger;
    private int numBlips;

    static {
        Class clsClass$ = class$jxl$biff$drawing$BStoreContainer;
        if (clsClass$ == null) {
            clsClass$ = class$("jxl.biff.drawing.BStoreContainer");
            class$jxl$biff$drawing$BStoreContainer = clsClass$;
        }
        logger = Logger.getLogger(clsClass$);
    }

    public BStoreContainer(EscherRecordData escherRecordData) {
        super(escherRecordData);
        this.numBlips = getInstance();
    }

    static /* synthetic */ Class class$(String str) {
        try {
            return Class.forName(str);
        } catch (ClassNotFoundException e) {
            throw new NoClassDefFoundError(e.getMessage());
        }
    }

    public BlipStoreEntry getDrawing(int i2) {
        return (BlipStoreEntry) getChildren()[i2];
    }

    public int getNumBlips() {
        return this.numBlips;
    }

    void setNumBlips(int i2) {
        this.numBlips = i2;
        setInstance(i2);
    }

    public BStoreContainer() {
        super(EscherRecordType.BSTORE_CONTAINER);
    }
}
