Example usage for org.apache.poi.ss.formula.ptg NamePtg NamePtg

List of usage examples for org.apache.poi.ss.formula.ptg NamePtg NamePtg

Introduction

In this page you can find the example usage for org.apache.poi.ss.formula.ptg NamePtg NamePtg.

Prototype

public NamePtg(LittleEndianInput in) 

Source Link

Document

Creates new NamePtg

Usage

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);
}