Package org.docx4j.wml
Class Pict
java.lang.Object
org.docx4j.wml.CTPictureBase
org.docx4j.wml.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 Summary
Fields Modifier and Type Field Description protected java.lang.StringanchorIdprotected CTControlcontrolprotected CTRelmovieFields inherited from class org.docx4j.wml.CTPictureBase
anyAndAny -
Constructor Summary
Constructors Constructor Description Pict() -
Method Summary
Modifier and Type Method Description voidafterUnmarshal(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.StringgetAnchorId()Gets the value of the anchorId property.CTControlgetControl()Gets the value of the control property.CTRelgetMovie()Gets the value of the movie property.voidsetAnchorId(java.lang.String value)Sets the value of the anchorId property.voidsetControl(CTControl value)Sets the value of the control property.voidsetMovie(CTRel value)Sets the value of the movie property.Methods inherited from class org.docx4j.wml.CTPictureBase
getAnyAndAny, getParent, setParentMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
movie
-
control
-
anchorId
protected java.lang.String anchorId
-
-
Constructor Details
-
Pict
public Pict()
-
-
Method Details
-
getMovie
Gets the value of the movie property.- Returns:
- possible object is
CTRel
-
setMovie
Sets the value of the movie property.- Parameters:
value- allowed object isCTRel
-
getControl
Gets the value of the control property.- Returns:
- possible object is
CTControl
-
setControl
Sets the value of the control property.- Parameters:
value- allowed object isCTControl
-
getAnchorId
public java.lang.String getAnchorId()Gets the value of the anchorId property.- Returns:
- possible object is
String
-
setAnchorId
public void setAnchorId(java.lang.String value)Sets the value of the anchorId property.- Parameters:
value- allowed object isString
-
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.- Overrides:
afterUnmarshalin classCTPictureBase- Parameters:
parent- The parent object in the object tree.unmarshaller- The unmarshaller that generated the instance.
-