Class CTPageNumber

java.lang.Object
org.docx4j.wml.CTPageNumber
All Implemented Interfaces:
Child

public class CTPageNumber
extends java.lang.Object
implements Child

Java class for CT_PageNumber complex type.

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

 <complexType name="CT_PageNumber">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="fmt" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}NumberFormat" />
       <attribute name="start" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
       <attribute name="chapStyle" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
       <attribute name="chapSep" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_ChapterSep" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected STChapterSep chapSep  
    protected java.math.BigInteger chapStyle  
    protected NumberFormat fmt  
    protected java.math.BigInteger start  
  • Constructor Summary

    Constructors
    Constructor Description
    CTPageNumber()  
  • 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.
    STChapterSep getChapSep()
    Gets the value of the chapSep property.
    java.math.BigInteger getChapStyle()
    Gets the value of the chapStyle property.
    NumberFormat getFmt()
    Gets the value of the fmt property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.math.BigInteger getStart()
    Gets the value of the start property.
    void setChapSep​(STChapterSep value)
    Sets the value of the chapSep property.
    void setChapStyle​(java.math.BigInteger value)
    Sets the value of the chapStyle property.
    void setFmt​(NumberFormat value)
    Sets the value of the fmt property.
    void setParent​(java.lang.Object parent)  
    void setStart​(java.math.BigInteger value)
    Sets the value of the start property.

    Methods inherited from class java.lang.Object

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

    • fmt

      protected NumberFormat fmt
    • start

      protected java.math.BigInteger start
    • chapStyle

      protected java.math.BigInteger chapStyle
    • chapSep

      protected STChapterSep chapSep
  • Constructor Details

    • CTPageNumber

      public CTPageNumber()
  • Method Details

    • getFmt

      public NumberFormat getFmt()
      Gets the value of the fmt property.
      Returns:
      possible object is NumberFormat
    • setFmt

      public void setFmt​(NumberFormat value)
      Sets the value of the fmt property.
      Parameters:
      value - allowed object is NumberFormat
    • getStart

      public java.math.BigInteger getStart()
      Gets the value of the start property.
      Returns:
      possible object is BigInteger
    • setStart

      public void setStart​(java.math.BigInteger value)
      Sets the value of the start property.
      Parameters:
      value - allowed object is BigInteger
    • getChapStyle

      public java.math.BigInteger getChapStyle()
      Gets the value of the chapStyle property.
      Returns:
      possible object is BigInteger
    • setChapStyle

      public void setChapStyle​(java.math.BigInteger value)
      Sets the value of the chapStyle property.
      Parameters:
      value - allowed object is BigInteger
    • getChapSep

      public STChapterSep getChapSep()
      Gets the value of the chapSep property.
      Returns:
      possible object is STChapterSep
    • setChapSep

      public void setChapSep​(STChapterSep value)
      Sets the value of the chapSep property.
      Parameters:
      value - allowed object is STChapterSep
    • 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.