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

com.hfg.xml.msofficexml.OfficeOpenXmlRelationship Maven / Gradle / Ivy

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


import com.hfg.xml.msofficexml.part.OfficeXMLPart;

public class OfficeOpenXmlRelationship
{
   private String           mId;
   private OfficeXMLPart    mPart;
   private RelationshipType mType;
   private String           mTarget;
   private String           mTargetMode;

   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship()
   {

   }

   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship setPart(OfficeXMLPart inValue)
   {
      mPart = inValue;
      return this;
   }

   //---------------------------------------------------------------------------
   public OfficeXMLPart getPart()
   {
      return mPart;
   }

   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship setType(RelationshipType inValue)
   {
      mType = inValue;
      return this;
   }

   //---------------------------------------------------------------------------
   public RelationshipType getType()
   {
      return mType;
   }

   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship setId(String inValue)
   {
      mId = inValue;
      return this;
   }

   //---------------------------------------------------------------------------
   public String getId()
   {
      return mId;
   }


   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship setTarget(String inValue)
   {
      mTarget = inValue;
      return this;
   }

   //---------------------------------------------------------------------------
   public String getTarget()
   {
      return mTarget;
   }


   //---------------------------------------------------------------------------
   public OfficeOpenXmlRelationship setTargetMode(String inValue)
   {
      mTargetMode = inValue;
      return this;
   }

   //---------------------------------------------------------------------------
   public String getTargetMode()
   {
      return mTargetMode;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy