Class CTBookmarkRange

java.lang.Object
All Implemented Interfaces:
Child
Direct Known Subclasses:
CTBookmark

public class CTBookmarkRange
extends CTMarkupRange

Java class for CT_BookmarkRange complex type.

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

 <complexType name="CT_BookmarkRange">
   <complexContent>
     <extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_MarkupRange">
       <attribute name="colFirst" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
       <attribute name="colLast" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
     </extension>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.math.BigInteger colFirst  
    protected java.math.BigInteger colLast  

    Fields inherited from class org.docx4j.wml.CTMarkupRange

    displacedByCustomXml

    Fields inherited from class org.docx4j.wml.CTMarkup

    id
  • Constructor Summary

    Constructors
    Constructor Description
    CTBookmarkRange()  
  • 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.math.BigInteger getColFirst()
    Gets the value of the colFirst property.
    java.math.BigInteger getColLast()
    Gets the value of the colLast property.
    void setColFirst​(java.math.BigInteger value)
    Sets the value of the colFirst property.
    void setColLast​(java.math.BigInteger value)
    Sets the value of the colLast property.

    Methods inherited from class org.docx4j.wml.CTMarkupRange

    getDisplacedByCustomXml, setDisplacedByCustomXml

    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

    • colFirst

      protected java.math.BigInteger colFirst
    • colLast

      protected java.math.BigInteger colLast
  • Constructor Details

    • CTBookmarkRange

      public CTBookmarkRange()
  • Method Details

    • getColFirst

      public java.math.BigInteger getColFirst()
      Gets the value of the colFirst property.
      Returns:
      possible object is BigInteger
    • setColFirst

      public void setColFirst​(java.math.BigInteger value)
      Sets the value of the colFirst property.
      Parameters:
      value - allowed object is BigInteger
    • getColLast

      public java.math.BigInteger getColLast()
      Gets the value of the colLast property.
      Returns:
      possible object is BigInteger
    • setColLast

      public void setColLast​(java.math.BigInteger value)
      Sets the value of the colLast property.
      Parameters:
      value - allowed object is BigInteger
    • 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 CTMarkupRange
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.