Class CTUndoInfo

java.lang.Object
org.xlsx4j.sml.CTUndoInfo
All Implemented Interfaces:
Child

public class CTUndoInfo extends Object implements Child

Java class for CT_UndoInfo complex type.

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

 <complexType name="CT_UndoInfo">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="index" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="exp" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_FormulaExpression" />
       <attribute name="ref3D" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="array" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="v" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="nf" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="cs" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="dr" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_RefA" />
       <attribute name="dn" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="r" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_CellRef" />
       <attribute name="sId" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTUndoInfo

      public CTUndoInfo()
  • Method Details

    • getIndex

      public long getIndex()
      Gets the value of the index property.
    • setIndex

      public void setIndex(long value)
      Sets the value of the index property.
    • getExp

      public STFormulaExpression getExp()
      Gets the value of the exp property.
      Returns:
      possible object is STFormulaExpression
    • setExp

      public void setExp(STFormulaExpression value)
      Sets the value of the exp property.
      Parameters:
      value - allowed object is STFormulaExpression
    • isRef3D

      public boolean isRef3D()
      Gets the value of the ref3D property.
      Returns:
      possible object is Boolean
    • setRef3D

      public void setRef3D(Boolean value)
      Sets the value of the ref3D property.
      Parameters:
      value - allowed object is Boolean
    • isArray

      public boolean isArray()
      Gets the value of the array property.
      Returns:
      possible object is Boolean
    • setArray

      public void setArray(Boolean value)
      Sets the value of the array property.
      Parameters:
      value - allowed object is Boolean
    • isV

      public boolean isV()
      Gets the value of the v property.
      Returns:
      possible object is Boolean
    • setV

      public void setV(Boolean value)
      Sets the value of the v property.
      Parameters:
      value - allowed object is Boolean
    • isNf

      public boolean isNf()
      Gets the value of the nf property.
      Returns:
      possible object is Boolean
    • setNf

      public void setNf(Boolean value)
      Sets the value of the nf property.
      Parameters:
      value - allowed object is Boolean
    • isCs

      public boolean isCs()
      Gets the value of the cs property.
      Returns:
      possible object is Boolean
    • setCs

      public void setCs(Boolean value)
      Sets the value of the cs property.
      Parameters:
      value - allowed object is Boolean
    • getDr

      public String getDr()
      Gets the value of the dr property.
      Returns:
      possible object is String
    • setDr

      public void setDr(String value)
      Sets the value of the dr property.
      Parameters:
      value - allowed object is String
    • getDn

      public String getDn()
      Gets the value of the dn property.
      Returns:
      possible object is String
    • setDn

      public void setDn(String value)
      Sets the value of the dn property.
      Parameters:
      value - allowed object is String
    • getR

      public String getR()
      Gets the value of the r property.
      Returns:
      possible object is String
    • setR

      public void setR(String value)
      Sets the value of the r property.
      Parameters:
      value - allowed object is String
    • getSId

      public Long getSId()
      Gets the value of the sId property.
      Returns:
      possible object is Long
    • setSId

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