source: trunk/docx4j/src/main/java/org/docx4j/dml/CTEffectList.java @ 1041

Revision 1041, 6.8 KB checked in by jharrop, 2 years ago (diff)

More complete DML, generated from TC45 1.0 final, using dmlROOT.xsd

Line 
1/*
2 *  Copyright 2007-2008, Plutext Pty Ltd.
3 *   
4 *  This file is part of docx4j.
5
6    docx4j is licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18
19 */
20
21
22package org.docx4j.dml;
23
24import javax.xml.bind.annotation.XmlAccessType;
25import javax.xml.bind.annotation.XmlAccessorType;
26import javax.xml.bind.annotation.XmlType;
27
28
29/**
30 * <p>Java class for CT_EffectList complex type.
31 *
32 * <p>The following schema fragment specifies the expected content contained within this class.
33 *
34 * <pre>
35 * &lt;complexType name="CT_EffectList">
36 *   &lt;complexContent>
37 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
38 *       &lt;sequence>
39 *         &lt;element name="blur" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_BlurEffect" minOccurs="0"/>
40 *         &lt;element name="fillOverlay" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_FillOverlayEffect" minOccurs="0"/>
41 *         &lt;element name="glow" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GlowEffect" minOccurs="0"/>
42 *         &lt;element name="innerShdw" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_InnerShadowEffect" minOccurs="0"/>
43 *         &lt;element name="outerShdw" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OuterShadowEffect" minOccurs="0"/>
44 *         &lt;element name="prstShdw" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PresetShadowEffect" minOccurs="0"/>
45 *         &lt;element name="reflection" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ReflectionEffect" minOccurs="0"/>
46 *         &lt;element name="softEdge" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_SoftEdgesEffect" minOccurs="0"/>
47 *       &lt;/sequence>
48 *     &lt;/restriction>
49 *   &lt;/complexContent>
50 * &lt;/complexType>
51 * </pre>
52 *
53 *
54 */
55@XmlAccessorType(XmlAccessType.FIELD)
56@XmlType(name = "CT_EffectList", propOrder = {
57    "blur",
58    "fillOverlay",
59    "glow",
60    "innerShdw",
61    "outerShdw",
62    "prstShdw",
63    "reflection",
64    "softEdge"
65})
66public class CTEffectList {
67
68    protected CTBlurEffect blur;
69    protected CTFillOverlayEffect fillOverlay;
70    protected CTGlowEffect glow;
71    protected CTInnerShadowEffect innerShdw;
72    protected CTOuterShadowEffect outerShdw;
73    protected CTPresetShadowEffect prstShdw;
74    protected CTReflectionEffect reflection;
75    protected CTSoftEdgesEffect softEdge;
76
77    /**
78     * Gets the value of the blur property.
79     *
80     * @return
81     *     possible object is
82     *     {@link CTBlurEffect }
83     *     
84     */
85    public CTBlurEffect getBlur() {
86        return blur;
87    }
88
89    /**
90     * Sets the value of the blur property.
91     *
92     * @param value
93     *     allowed object is
94     *     {@link CTBlurEffect }
95     *     
96     */
97    public void setBlur(CTBlurEffect value) {
98        this.blur = value;
99    }
100
101    /**
102     * Gets the value of the fillOverlay property.
103     *
104     * @return
105     *     possible object is
106     *     {@link CTFillOverlayEffect }
107     *     
108     */
109    public CTFillOverlayEffect getFillOverlay() {
110        return fillOverlay;
111    }
112
113    /**
114     * Sets the value of the fillOverlay property.
115     *
116     * @param value
117     *     allowed object is
118     *     {@link CTFillOverlayEffect }
119     *     
120     */
121    public void setFillOverlay(CTFillOverlayEffect value) {
122        this.fillOverlay = value;
123    }
124
125    /**
126     * Gets the value of the glow property.
127     *
128     * @return
129     *     possible object is
130     *     {@link CTGlowEffect }
131     *     
132     */
133    public CTGlowEffect getGlow() {
134        return glow;
135    }
136
137    /**
138     * Sets the value of the glow property.
139     *
140     * @param value
141     *     allowed object is
142     *     {@link CTGlowEffect }
143     *     
144     */
145    public void setGlow(CTGlowEffect value) {
146        this.glow = value;
147    }
148
149    /**
150     * Gets the value of the innerShdw property.
151     *
152     * @return
153     *     possible object is
154     *     {@link CTInnerShadowEffect }
155     *     
156     */
157    public CTInnerShadowEffect getInnerShdw() {
158        return innerShdw;
159    }
160
161    /**
162     * Sets the value of the innerShdw property.
163     *
164     * @param value
165     *     allowed object is
166     *     {@link CTInnerShadowEffect }
167     *     
168     */
169    public void setInnerShdw(CTInnerShadowEffect value) {
170        this.innerShdw = value;
171    }
172
173    /**
174     * Gets the value of the outerShdw property.
175     *
176     * @return
177     *     possible object is
178     *     {@link CTOuterShadowEffect }
179     *     
180     */
181    public CTOuterShadowEffect getOuterShdw() {
182        return outerShdw;
183    }
184
185    /**
186     * Sets the value of the outerShdw property.
187     *
188     * @param value
189     *     allowed object is
190     *     {@link CTOuterShadowEffect }
191     *     
192     */
193    public void setOuterShdw(CTOuterShadowEffect value) {
194        this.outerShdw = value;
195    }
196
197    /**
198     * Gets the value of the prstShdw property.
199     *
200     * @return
201     *     possible object is
202     *     {@link CTPresetShadowEffect }
203     *     
204     */
205    public CTPresetShadowEffect getPrstShdw() {
206        return prstShdw;
207    }
208
209    /**
210     * Sets the value of the prstShdw property.
211     *
212     * @param value
213     *     allowed object is
214     *     {@link CTPresetShadowEffect }
215     *     
216     */
217    public void setPrstShdw(CTPresetShadowEffect value) {
218        this.prstShdw = value;
219    }
220
221    /**
222     * Gets the value of the reflection property.
223     *
224     * @return
225     *     possible object is
226     *     {@link CTReflectionEffect }
227     *     
228     */
229    public CTReflectionEffect getReflection() {
230        return reflection;
231    }
232
233    /**
234     * Sets the value of the reflection property.
235     *
236     * @param value
237     *     allowed object is
238     *     {@link CTReflectionEffect }
239     *     
240     */
241    public void setReflection(CTReflectionEffect value) {
242        this.reflection = value;
243    }
244
245    /**
246     * Gets the value of the softEdge property.
247     *
248     * @return
249     *     possible object is
250     *     {@link CTSoftEdgesEffect }
251     *     
252     */
253    public CTSoftEdgesEffect getSoftEdge() {
254        return softEdge;
255    }
256
257    /**
258     * Sets the value of the softEdge property.
259     *
260     * @param value
261     *     allowed object is
262     *     {@link CTSoftEdgesEffect }
263     *     
264     */
265    public void setSoftEdge(CTSoftEdgesEffect value) {
266        this.softEdge = value;
267    }
268
269}
Note: See TracBrowser for help on using the repository browser.