All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.xml.msofficexml.xlsx.part.XlsxPart Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
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();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy