Class Pict

All Implemented Interfaces:
Child

public class Pict extends CTPictureBase

Java class for CT_Picture complex type.

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

 <complexType name="CT_Picture">
   <complexContent>
     <extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_PictureBase">
       <sequence>
         <element name="movie" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Rel" minOccurs="0"/>
         <element name="control" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Control" minOccurs="0"/>
       </sequence>
       <attribute ref="{http://schemas.microsoft.com/office/word/2010/wordml}anchorId"/>
     </extension>
   </complexContent>
 </complexType>
 
  • Field Details

    • movie

      protected CTRel movie
    • control

      protected CTControl control
    • anchorId

      protected String anchorId
  • Constructor Details

    • Pict

      public Pict()
  • Method Details

    • getMovie

      public CTRel getMovie()
      Gets the value of the movie property.
      Returns:
      possible object is CTRel
    • setMovie

      public void setMovie(CTRel value)
      Sets the value of the movie property.
      Parameters:
      value - allowed object is CTRel
    • getControl

      public CTControl getControl()
      Gets the value of the control property.
      Returns:
      possible object is CTControl
    • setControl

      public void setControl(CTControl value)
      Sets the value of the control property.
      Parameters:
      value - allowed object is CTControl
    • getAnchorId

      public String getAnchorId()
      Gets the value of the anchorId property.
      Returns:
      possible object is String
    • setAnchorId

      public void setAnchorId(String value)
      Sets the value of the anchorId property.
      Parameters:
      value - allowed object is String
    • 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.
      Overrides:
      afterUnmarshal in class CTPictureBase
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.