Class CTEntry

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

public class CTEntry extends 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 Details

  • Constructor Details

    • CTEntry

      public CTEntry()
  • Method Details

    • getNew

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

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

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

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