Class CTShapeStyle

java.lang.Object
org.docx4j.dml.CTShapeStyle
All Implemented Interfaces:
Child

public class CTShapeStyle
extends java.lang.Object
implements Child

Java class for CT_ShapeStyle complex type.

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

 <complexType name="CT_ShapeStyle">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="lnRef" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_StyleMatrixReference"/>
         <element name="fillRef" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_StyleMatrixReference"/>
         <element name="effectRef" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_StyleMatrixReference"/>
         <element name="fontRef" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_FontReference"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTShapeStyle

      public CTShapeStyle()
  • Method Details

    • getLnRef

      public CTStyleMatrixReference getLnRef()
      Gets the value of the lnRef property.
      Returns:
      possible object is CTStyleMatrixReference
    • setLnRef

      public void setLnRef​(CTStyleMatrixReference value)
      Sets the value of the lnRef property.
      Parameters:
      value - allowed object is CTStyleMatrixReference
    • getFillRef

      public CTStyleMatrixReference getFillRef()
      Gets the value of the fillRef property.
      Returns:
      possible object is CTStyleMatrixReference
    • setFillRef

      public void setFillRef​(CTStyleMatrixReference value)
      Sets the value of the fillRef property.
      Parameters:
      value - allowed object is CTStyleMatrixReference
    • getEffectRef

      public CTStyleMatrixReference getEffectRef()
      Gets the value of the effectRef property.
      Returns:
      possible object is CTStyleMatrixReference
    • setEffectRef

      public void setEffectRef​(CTStyleMatrixReference value)
      Sets the value of the effectRef property.
      Parameters:
      value - allowed object is CTStyleMatrixReference
    • getFontRef

      public CTFontReference getFontRef()
      Gets the value of the fontRef property.
      Returns:
      possible object is CTFontReference
    • setFontRef

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