Class Relationship

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

public class Relationship
extends java.lang.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 Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String id  
    protected java.lang.String target  
    protected java.lang.String targetMode  
    protected java.lang.String type  
  • Constructor Summary

    Constructors
    Constructor Description
    Relationship()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.lang.String getId()
    Gets the value of the id property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getTarget()
    Gets the value of the target property.
    java.lang.String getTargetMode()
    Gets the value of the targetMode property.
    java.lang.String getType()
    Gets the value of the type property.
    void setId​(java.lang.String value)
    Sets the value of the id property.
    void setParent​(java.lang.Object parent)  
    void setTarget​(java.lang.String value)
    Sets the value of the target property.
    void setTargetMode​(java.lang.String value)
    Sets the value of the targetMode property.
    void setType​(java.lang.String value)
    Sets the value of the type property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • targetMode

      protected java.lang.String targetMode
    • target

      protected java.lang.String target
    • type

      protected java.lang.String type
    • id

      protected java.lang.String id
  • Constructor Details

    • Relationship

      public Relationship()
  • Method Details

    • getTargetMode

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

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

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

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

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

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

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

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

      public java.lang.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​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.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.