Class CTTblStylePr

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

public class CTTblStylePr
extends java.lang.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 Summary

    Fields
    Modifier and Type Field Description
    protected PPr pPr  
    protected RPr rPr  
    protected CTTblPrBase tblPr  
    protected TcPr tcPr  
    protected TrPr trPr  
    protected STTblStyleOverrideType type  
  • Constructor Summary

    Constructors
    Constructor Description
    CTTblStylePr()  
  • 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.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    PPr getPPr()
    Gets the value of the pPr property.
    RPr getRPr()
    Gets the value of the rPr property.
    CTTblPrBase getTblPr()
    Gets the value of the tblPr property.
    TcPr getTcPr()
    Gets the value of the tcPr property.
    TrPr getTrPr()
    Gets the value of the trPr property.
    STTblStyleOverrideType getType()
    Gets the value of the type property.
    void setParent​(java.lang.Object parent)  
    void setPPr​(PPr value)
    Sets the value of the pPr property.
    void setRPr​(RPr value)
    Sets the value of the rPr property.
    void setTblPr​(CTTblPrBase value)
    Sets the value of the tblPr property.
    void setTcPr​(TcPr value)
    Sets the value of the tcPr property.
    void setTrPr​(TrPr value)
    Sets the value of the trPr property.
    void setType​(STTblStyleOverrideType value)
    Sets the value of the type property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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 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.