Class CTBorderBoxPr

java.lang.Object
org.docx4j.math.CTBorderBoxPr
All Implemented Interfaces:
Child

public class CTBorderBoxPr extends Object implements Child

Java class for CT_BorderBoxPr complex type.

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

 <complexType name="CT_BorderBoxPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="hideTop" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="hideBot" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="hideLeft" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="hideRight" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="strikeH" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="strikeV" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="strikeBLTR" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="strikeTLBR" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_OnOff" minOccurs="0"/>
         <element name="ctrlPr" type="{http://schemas.openxmlformats.org/officeDocument/2006/math}CT_CtrlPr" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • hideTop

      protected CTOnOff hideTop
    • hideBot

      protected CTOnOff hideBot
    • hideLeft

      protected CTOnOff hideLeft
    • hideRight

      protected CTOnOff hideRight
    • strikeH

      protected CTOnOff strikeH
    • strikeV

      protected CTOnOff strikeV
    • strikeBLTR

      protected CTOnOff strikeBLTR
    • strikeTLBR

      protected CTOnOff strikeTLBR
    • ctrlPr

      protected CTCtrlPr ctrlPr
  • Constructor Details

    • CTBorderBoxPr

      public CTBorderBoxPr()
  • Method Details

    • getHideTop

      public CTOnOff getHideTop()
      Gets the value of the hideTop property.
      Returns:
      possible object is CTOnOff
    • setHideTop

      public void setHideTop(CTOnOff value)
      Sets the value of the hideTop property.
      Parameters:
      value - allowed object is CTOnOff
    • getHideBot

      public CTOnOff getHideBot()
      Gets the value of the hideBot property.
      Returns:
      possible object is CTOnOff
    • setHideBot

      public void setHideBot(CTOnOff value)
      Sets the value of the hideBot property.
      Parameters:
      value - allowed object is CTOnOff
    • getHideLeft

      public CTOnOff getHideLeft()
      Gets the value of the hideLeft property.
      Returns:
      possible object is CTOnOff
    • setHideLeft

      public void setHideLeft(CTOnOff value)
      Sets the value of the hideLeft property.
      Parameters:
      value - allowed object is CTOnOff
    • getHideRight

      public CTOnOff getHideRight()
      Gets the value of the hideRight property.
      Returns:
      possible object is CTOnOff
    • setHideRight

      public void setHideRight(CTOnOff value)
      Sets the value of the hideRight property.
      Parameters:
      value - allowed object is CTOnOff
    • getStrikeH

      public CTOnOff getStrikeH()
      Gets the value of the strikeH property.
      Returns:
      possible object is CTOnOff
    • setStrikeH

      public void setStrikeH(CTOnOff value)
      Sets the value of the strikeH property.
      Parameters:
      value - allowed object is CTOnOff
    • getStrikeV

      public CTOnOff getStrikeV()
      Gets the value of the strikeV property.
      Returns:
      possible object is CTOnOff
    • setStrikeV

      public void setStrikeV(CTOnOff value)
      Sets the value of the strikeV property.
      Parameters:
      value - allowed object is CTOnOff
    • getStrikeBLTR

      public CTOnOff getStrikeBLTR()
      Gets the value of the strikeBLTR property.
      Returns:
      possible object is CTOnOff
    • setStrikeBLTR

      public void setStrikeBLTR(CTOnOff value)
      Sets the value of the strikeBLTR property.
      Parameters:
      value - allowed object is CTOnOff
    • getStrikeTLBR

      public CTOnOff getStrikeTLBR()
      Gets the value of the strikeTLBR property.
      Returns:
      possible object is CTOnOff
    • setStrikeTLBR

      public void setStrikeTLBR(CTOnOff value)
      Sets the value of the strikeTLBR property.
      Parameters:
      value - allowed object is CTOnOff
    • getCtrlPr

      public CTCtrlPr getCtrlPr()
      Gets the value of the ctrlPr property.
      Returns:
      possible object is CTCtrlPr
    • setCtrlPr

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