001package com.hfg.xml.msofficexml.xlsx.part; 002 003import com.hfg.xml.msofficexml.OfficeOpenXmlDocument; 004import com.hfg.xml.msofficexml.part.OfficeXMLPart; 005import com.hfg.xml.msofficexml.xlsx.Xlsx; 006 007 008public abstract class XlsxPart extends OfficeXMLPart 009{ 010 //--------------------------------------------------------------------------- 011 public XlsxPart(OfficeOpenXmlDocument inOfficeDoc) 012 { 013 super(inOfficeDoc); 014 } 015 016 017 //--------------------------------------------------------------------------- 018 public XlsxPart setParentDoc(Xlsx inValue) 019 { 020 return (XlsxPart) super.setParentDoc(inValue); 021 } 022 023 //--------------------------------------------------------------------------- 024 public Xlsx getParentDoc() 025 { 026 return (Xlsx) super.getParentDoc(); 027 } 028 029 //--------------------------------------------------------------------------- 030 @Override 031 public XlsxPart clone() 032 { 033 return (XlsxPart) super.clone(); 034 } 035 036}