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

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

There is a newer version: 20240423
Show newest version
package com.hfg.xml.msofficexml.xlsx.part;


import com.hfg.xml.msofficexml.OfficeOpenXmlRelationship;
import com.hfg.xml.msofficexml.RelationshipType;
import com.hfg.xml.msofficexml.part.OfficeOpenXmlRelationshipPart;
import com.hfg.xml.msofficexml.xlsx.Xlsx;
import com.hfg.xml.msofficexml.xlsx.spreadsheetml.SsmlXML;

public class WorkbookRelationshipPart extends OfficeOpenXmlRelationshipPart
{
   //---------------------------------------------------------------------------
   public WorkbookRelationshipPart(Xlsx inParentDoc)
   {
      super(inParentDoc);

      setFile(SsmlXML.WORKBOOK_RELATIONSHIP_FILE);
   }

   //---------------------------------------------------------------------------
   public String addWorksheet(WorksheetPart inValue)
   {
      OfficeOpenXmlRelationship relationship = new OfficeOpenXmlRelationship();
      relationship.setPart(inValue)
                  .setType(RelationshipType.WORKSHEET);

      return addRelationship(relationship);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy