Class CTEntry

java.lang.Object
org.docx4j.vml.officedrawing.CTEntry
All Implemented Interfaces:
Child

public class CTEntry
extends java.lang.Object
implements Child

Java class for CT_Entry complex type.

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

 <complexType name="CT_Entry">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="new" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="old" type="{http://www.w3.org/2001/XMLSchema}int" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Integer _new  
    protected java.lang.Integer old  
  • Constructor Summary

    Constructors
    Constructor Description
    CTEntry()  
  • 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.Integer getNew()
    Gets the value of the new property.
    java.lang.Integer getOld()
    Gets the value of the old property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    void setNew​(java.lang.Integer value)
    Sets the value of the new property.
    void setOld​(java.lang.Integer value)
    Sets the value of the old property.
    void setParent​(java.lang.Object parent)  

    Methods inherited from class java.lang.Object

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

    • _new

      protected java.lang.Integer _new
    • old

      protected java.lang.Integer old
  • Constructor Details

    • CTEntry

      public CTEntry()
  • Method Details

    • getNew

      public java.lang.Integer getNew()
      Gets the value of the new property.
      Returns:
      possible object is Integer
    • setNew

      public void setNew​(java.lang.Integer value)
      Sets the value of the new property.
      Parameters:
      value - allowed object is Integer
    • getOld

      public java.lang.Integer getOld()
      Gets the value of the old property.
      Returns:
      possible object is Integer
    • setOld

      public void setOld​(java.lang.Integer value)
      Sets the value of the old property.
      Parameters:
      value - allowed object is Integer
    • 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.