com.hfg.xml.msofficexml.xlsx.part.XlsxPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.xml.msofficexml.xlsx.part;
import com.hfg.xml.msofficexml.OfficeOpenXmlDocument;
import com.hfg.xml.msofficexml.part.OfficeXMLPart;
import com.hfg.xml.msofficexml.xlsx.Xlsx;
public abstract class XlsxPart extends OfficeXMLPart
{
//---------------------------------------------------------------------------
public XlsxPart(OfficeOpenXmlDocument inOfficeDoc)
{
super(inOfficeDoc);
}
//---------------------------------------------------------------------------
public XlsxPart setParentDoc(Xlsx inValue)
{
return (XlsxPart) super.setParentDoc(inValue);
}
//---------------------------------------------------------------------------
public Xlsx getParentDoc()
{
return (Xlsx) super.getParentDoc();
}
//---------------------------------------------------------------------------
@Override
public XlsxPart clone()
{
return (XlsxPart) super.clone();
}
}