com.hfg.xml.msofficexml.OfficeOpenXmlRelationship 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;
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;
}
}