Class CTPictureEffectBackgroundRemoval
- All Implemented Interfaces:
Child
public class CTPictureEffectBackgroundRemoval extends java.lang.Object implements Child
Java class for CT_PictureEffectBackgroundRemoval complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_PictureEffectBackgroundRemoval">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="foregroundMark" type="{http://schemas.microsoft.com/office/drawing/2010/main}CT_PictureEffectBackgroundRemovalForegroundMark" maxOccurs="unbounded" minOccurs="0"/>
<element name="backgroundMark" type="{http://schemas.microsoft.com/office/drawing/2010/main}CT_PictureEffectBackgroundRemovalBackgroundMark" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="t" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
<attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
<attribute name="l" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
<attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields Modifier and Type Field Description protected intbprotected java.util.List<CTPictureEffectBackgroundRemovalBackgroundMark>backgroundMarkprotected java.util.List<CTPictureEffectBackgroundRemovalForegroundMark>foregroundMarkprotected intlprotected intrprotected intt -
Constructor Summary
Constructors Constructor Description CTPictureEffectBackgroundRemoval() -
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.intgetB()Gets the value of the b property.java.util.List<CTPictureEffectBackgroundRemovalBackgroundMark>getBackgroundMark()Gets the value of the backgroundMark property.java.util.List<CTPictureEffectBackgroundRemovalForegroundMark>getForegroundMark()Gets the value of the foregroundMark property.intgetL()Gets the value of the l property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.intgetR()Gets the value of the r property.intgetT()Gets the value of the t property.voidsetB(int value)Sets the value of the b property.voidsetL(int value)Sets the value of the l property.voidsetParent(java.lang.Object parent)voidsetR(int value)Sets the value of the r property.voidsetT(int value)Sets the value of the t property.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
foregroundMark
-
backgroundMark
-
t
protected int t -
b
protected int b -
l
protected int l -
r
protected int r
-
-
Constructor Details
-
CTPictureEffectBackgroundRemoval
public CTPictureEffectBackgroundRemoval()
-
-
Method Details
-
getForegroundMark
Gets the value of the foregroundMark property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the foregroundMark property.For example, to add a new item, do as follows:
getForegroundMark().add(newItem);Objects of the following type(s) are allowed in the list
CTPictureEffectBackgroundRemovalForegroundMark -
getBackgroundMark
Gets the value of the backgroundMark property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the backgroundMark property.For example, to add a new item, do as follows:
getBackgroundMark().add(newItem);Objects of the following type(s) are allowed in the list
CTPictureEffectBackgroundRemovalBackgroundMark -
getT
public int getT()Gets the value of the t property. -
setT
public void setT(int value)Sets the value of the t property. -
getB
public int getB()Gets the value of the b property. -
setB
public void setB(int value)Sets the value of the b property. -
getL
public int getL()Gets the value of the l property. -
setL
public void setL(int value)Sets the value of the l property. -
getR
public int getR()Gets the value of the r property. -
setR
public void setR(int value)Sets the value of the r property. -
getParent
public java.lang.Object getParent()Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
public void setParent(java.lang.Object parent) -
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.
-