Class CTShape

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

public class CTShape extends Object implements Child

Java class for CT_Shape complex type.

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

 <complexType name="CT_Shape">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="adjLst" type="{http://schemas.openxmlformats.org/drawingml/2006/diagram}CT_AdjLst" minOccurs="0"/>
         <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
       </sequence>
       <attribute name="rot" type="{http://www.w3.org/2001/XMLSchema}double" default="0" />
       <attribute name="type" type="{http://schemas.openxmlformats.org/drawingml/2006/diagram}ST_LayoutShapeType" default="none" />
       <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}blip"/>
       <attribute name="zOrderOff" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
       <attribute name="hideGeom" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="lkTxEntry" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="blipPhldr" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTShape

      public CTShape()
  • Method Details

    • getAdjLst

      public CTAdjLst getAdjLst()
      Gets the value of the adjLst property.
      Returns:
      possible object is CTAdjLst
    • setAdjLst

      public void setAdjLst(CTAdjLst value)
      Sets the value of the adjLst property.
      Parameters:
      value - allowed object is CTAdjLst
    • getExtLst

      public CTOfficeArtExtensionList getExtLst()
      Gets the value of the extLst property.
      Returns:
      possible object is CTOfficeArtExtensionList
    • setExtLst

      public void setExtLst(CTOfficeArtExtensionList value)
      Sets the value of the extLst property.
      Parameters:
      value - allowed object is CTOfficeArtExtensionList
    • getRot

      public double getRot()
      Gets the value of the rot property.
      Returns:
      possible object is Double
    • setRot

      public void setRot(Double value)
      Sets the value of the rot property.
      Parameters:
      value - allowed object is Double
    • getType

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

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
    • getBlip

      public String getBlip()
      Relationship to Image Part
      Returns:
      possible object is String
    • setBlip

      public void setBlip(String value)
      Sets the value of the blip property.
      Parameters:
      value - allowed object is String
    • getZOrderOff

      public int getZOrderOff()
      Gets the value of the zOrderOff property.
      Returns:
      possible object is Integer
    • setZOrderOff

      public void setZOrderOff(Integer value)
      Sets the value of the zOrderOff property.
      Parameters:
      value - allowed object is Integer
    • isHideGeom

      public boolean isHideGeom()
      Gets the value of the hideGeom property.
      Returns:
      possible object is Boolean
    • setHideGeom

      public void setHideGeom(Boolean value)
      Sets the value of the hideGeom property.
      Parameters:
      value - allowed object is Boolean
    • isLkTxEntry

      public boolean isLkTxEntry()
      Gets the value of the lkTxEntry property.
      Returns:
      possible object is Boolean
    • setLkTxEntry

      public void setLkTxEntry(Boolean value)
      Sets the value of the lkTxEntry property.
      Parameters:
      value - allowed object is Boolean
    • isBlipPhldr

      public boolean isBlipPhldr()
      Gets the value of the blipPhldr property.
      Returns:
      possible object is Boolean
    • setBlipPhldr

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