Class CTTblStylePr

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

public class CTTblStylePr extends Object implements Child

Java class for CT_TblStylePr complex type.

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

 <complexType name="CT_TblStylePr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="pPr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_PPr" minOccurs="0"/>
         <element name="rPr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_RPr" minOccurs="0"/>
         <element name="tblPr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TblPrBase" minOccurs="0"/>
         <element name="trPr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TrPr" minOccurs="0"/>
         <element name="tcPr" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TcPr" minOccurs="0"/>
       </sequence>
       <attribute name="type" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_TblStyleOverrideType" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTTblStylePr

      public CTTblStylePr()
  • Method Details

    • getPPr

      public PPr getPPr()
      Gets the value of the pPr property.
      Returns:
      possible object is PPr
    • setPPr

      public void setPPr(PPr value)
      Sets the value of the pPr property.
      Parameters:
      value - allowed object is PPr
    • getRPr

      public RPr getRPr()
      Gets the value of the rPr property.
      Returns:
      possible object is RPr
    • setRPr

      public void setRPr(RPr value)
      Sets the value of the rPr property.
      Parameters:
      value - allowed object is RPr
    • getTblPr

      public CTTblPrBase getTblPr()
      Gets the value of the tblPr property.
      Returns:
      possible object is CTTblPrBase
    • setTblPr

      public void setTblPr(CTTblPrBase value)
      Sets the value of the tblPr property.
      Parameters:
      value - allowed object is CTTblPrBase
    • getTrPr

      public TrPr getTrPr()
      Gets the value of the trPr property.
      Returns:
      possible object is TrPr
    • setTrPr

      public void setTrPr(TrPr value)
      Sets the value of the trPr property.
      Parameters:
      value - allowed object is TrPr
    • getTcPr

      public TcPr getTcPr()
      Gets the value of the tcPr property.
      Returns:
      possible object is TcPr
    • setTcPr

      public void setTcPr(TcPr value)
      Sets the value of the tcPr property.
      Parameters:
      value - allowed object is TcPr
    • getType

      public STTblStyleOverrideType getType()
      Gets the value of the type property.
      Returns:
      possible object is STTblStyleOverrideType
    • setType

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