Class CTTrackChange

java.lang.Object
org.docx4j.wml.CTMarkup
org.docx4j.wml.CTTrackChange
All Implemented Interfaces:
Child
Direct Known Subclasses:
Comments.Comment, CTCellMergeTrackChange, CTPPrChange, CTRPrChange, CTSectPrChange, CTTblPrChange, CTTblPrExChange, CTTcPrChange, CTTrackChangeNumbering, CTTrackChangeRange, CTTrPrChange, ParaRPrChange, RunDel, RunIns, RunTrackChange

public class CTTrackChange
extends CTMarkup

Java class for CT_TrackChange complex type.

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

 <complexType name="CT_TrackChange">
   <complexContent>
     <extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Markup">
       <attribute name="author" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_String" />
       <attribute name="date" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DateTime" />
     </extension>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String author  
    protected javax.xml.datatype.XMLGregorianCalendar date  

    Fields inherited from class org.docx4j.wml.CTMarkup

    id
  • Constructor Summary

    Constructors
    Constructor Description
    CTTrackChange()  
  • 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 getAuthor()
    Gets the value of the author property.
    javax.xml.datatype.XMLGregorianCalendar getDate()
    Gets the value of the date property.
    void setAuthor​(java.lang.String value)
    Sets the value of the author property.
    void setDate​(javax.xml.datatype.XMLGregorianCalendar value)
    Sets the value of the date property.

    Methods inherited from class org.docx4j.wml.CTMarkup

    getId, getParent, setId, setParent

    Methods inherited from class java.lang.Object

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

    • author

      protected java.lang.String author
    • date

      protected javax.xml.datatype.XMLGregorianCalendar date
  • Constructor Details

    • CTTrackChange

      public CTTrackChange()
  • Method Details

    • getAuthor

      public java.lang.String getAuthor()
      Gets the value of the author property.
      Returns:
      possible object is String
    • setAuthor

      public void setAuthor​(java.lang.String value)
      Sets the value of the author property.
      Parameters:
      value - allowed object is String
    • getDate

      public javax.xml.datatype.XMLGregorianCalendar getDate()
      Gets the value of the date property.
      Returns:
      possible object is XMLGregorianCalendar
    • setDate

      public void setDate​(javax.xml.datatype.XMLGregorianCalendar value)
      Sets the value of the date property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • 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.
      Overrides:
      afterUnmarshal in class CTMarkup
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.