Search in sources :

Example 1 with CTXmlPr

use of org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlPr in project poi by apache.

the class XSSFSingleXmlCell method getXmlDataType.

public Enum getXmlDataType() {
    CTXmlCellPr xmlCellPr = singleXmlCell.getXmlCellPr();
    CTXmlPr xmlPr = xmlCellPr.getXmlPr();
    return xmlPr.getXmlDataType();
}
Also used : CTXmlCellPr(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlCellPr) CTXmlPr(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlPr)

Example 2 with CTXmlPr

use of org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlPr in project poi by apache.

the class XSSFSingleXmlCell method getXpath.

public String getXpath() {
    CTXmlCellPr xmlCellPr = singleXmlCell.getXmlCellPr();
    CTXmlPr xmlPr = xmlCellPr.getXmlPr();
    String xpath = xmlPr.getXpath();
    return xpath;
}
Also used : CTXmlCellPr(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlCellPr) CTXmlPr(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlPr)

Aggregations

CTXmlCellPr (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlCellPr)2 CTXmlPr (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlPr)2