Class Relationship

java.lang.Object
org.docx4j.relationships.Relationship
All Implemented Interfaces:
Child

public class Relationship extends Object implements Child

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <simpleContent>
     <extension base="<http://www.w3.org/2001/XMLSchema>string">
       <attribute name="TargetMode">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             <enumeration value="External"/>
             <enumeration value="Internal"/>
           </restriction>
         </simpleType>
       </attribute>
       <attribute name="Target" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
       <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </extension>
   </simpleContent>
 </complexType>
 
  • Field Details

    • targetMode

      protected String targetMode
    • target

      protected String target
    • type

      protected String type
    • id

      protected String id
  • Constructor Details

    • Relationship

      public Relationship()
  • Method Details

    • getTargetMode

      public String getTargetMode()
      Gets the value of the targetMode property.
      Returns:
      possible object is String
    • setTargetMode

      public void setTargetMode(String value)
      Sets the value of the targetMode property.
      Parameters:
      value - allowed object is String
    • getTarget

      public String getTarget()
      Gets the value of the target property.
      Returns:
      possible object is String
    • setTarget

      public void setTarget(String value)
      Sets the value of the target property.
      Parameters:
      value - allowed object is String
    • getType

      public String getType()
      Gets the value of the type property.
      Returns:
      possible object is String
    • setType

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.