Class CTBlipFillProperties

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

public class CTBlipFillProperties
extends java.lang.Object
implements Child

Java class for CT_BlipFillProperties complex type.

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

 <complexType name="CT_BlipFillProperties">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="blip" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Blip" minOccurs="0"/>
         <element name="srcRect" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_RelativeRect" minOccurs="0"/>
         <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_FillModeProperties" minOccurs="0"/>
       </sequence>
       <attribute name="dpi" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="rotWithShape" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTBlipFillProperties

      public CTBlipFillProperties()
  • Method Details

    • getBlip

      public CTBlip getBlip()
      Gets the value of the blip property.
      Returns:
      possible object is CTBlip
    • setBlip

      public void setBlip​(CTBlip value)
      Sets the value of the blip property.
      Parameters:
      value - allowed object is CTBlip
    • getSrcRect

      public CTRelativeRect getSrcRect()
      Gets the value of the srcRect property.
      Returns:
      possible object is CTRelativeRect
    • setSrcRect

      public void setSrcRect​(CTRelativeRect value)
      Sets the value of the srcRect property.
      Parameters:
      value - allowed object is CTRelativeRect
    • getTile

      public CTTileInfoProperties getTile()
      Gets the value of the tile property.
      Returns:
      possible object is CTTileInfoProperties
    • setTile

      public void setTile​(CTTileInfoProperties value)
      Sets the value of the tile property.
      Parameters:
      value - allowed object is CTTileInfoProperties
    • getStretch

      public CTStretchInfoProperties getStretch()
      Gets the value of the stretch property.
      Returns:
      possible object is CTStretchInfoProperties
    • setStretch

      public void setStretch​(CTStretchInfoProperties value)
      Sets the value of the stretch property.
      Parameters:
      value - allowed object is CTStretchInfoProperties
    • getDpi

      public java.lang.Long getDpi()
      Gets the value of the dpi property.
      Returns:
      possible object is Long
    • setDpi

      public void setDpi​(java.lang.Long value)
      Sets the value of the dpi property.
      Parameters:
      value - allowed object is Long
    • isRotWithShape

      public java.lang.Boolean isRotWithShape()
      Gets the value of the rotWithShape property.
      Returns:
      possible object is Boolean
    • setRotWithShape

      public void setRotWithShape​(java.lang.Boolean value)
      Sets the value of the rotWithShape property.
      Parameters:
      value - allowed object is Boolean
    • 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.