List of usage examples for org.apache.poi.ss.formula.ptg NamePtg NamePtg
public NamePtg(LittleEndianInput in)
From source file:com.dataart.spreadsheetanalytics.engine.PoiWorkbookConverters.java
License:Apache License
public PoiProxyName(String nameText, boolean isFunctionName, boolean hasFormula, Ptg[] nameDefinition, boolean isRange, int nameIndex) { //NOPMD this.nameText = nameText; this.isFunctionName = isFunctionName; this.hasFormula = hasFormula; this.nameDefinition = nameDefinition; this.isRange = isRange; this.namePtg = new NamePtg(nameIndex); }