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

Revision 1041, 4.9 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_FillEffect 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_FillEffect">
36 *   &lt;complexContent>
37 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
38 *       &lt;sequence>
39 *         &lt;group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_FillProperties"/>
40 *       &lt;/sequence>
41 *     &lt;/restriction>
42 *   &lt;/complexContent>
43 * &lt;/complexType>
44 * </pre>
45 *
46 *
47 */
48@XmlAccessorType(XmlAccessType.FIELD)
49@XmlType(name = "CT_FillEffect", propOrder = {
50    "noFill",
51    "solidFill",
52    "gradFill",
53    "blipFill",
54    "pattFill",
55    "grpFill"
56})
57public class CTFillEffect {
58
59    protected CTNoFillProperties noFill;
60    protected CTSolidColorFillProperties solidFill;
61    protected CTGradientFillProperties gradFill;
62    protected CTBlipFillProperties blipFill;
63    protected CTPatternFillProperties pattFill;
64    protected CTGroupFillProperties grpFill;
65
66    /**
67     * Gets the value of the noFill property.
68     *
69     * @return
70     *     possible object is
71     *     {@link CTNoFillProperties }
72     *     
73     */
74    public CTNoFillProperties getNoFill() {
75        return noFill;
76    }
77
78    /**
79     * Sets the value of the noFill property.
80     *
81     * @param value
82     *     allowed object is
83     *     {@link CTNoFillProperties }
84     *     
85     */
86    public void setNoFill(CTNoFillProperties value) {
87        this.noFill = value;
88    }
89
90    /**
91     * Gets the value of the solidFill property.
92     *
93     * @return
94     *     possible object is
95     *     {@link CTSolidColorFillProperties }
96     *     
97     */
98    public CTSolidColorFillProperties getSolidFill() {
99        return solidFill;
100    }
101
102    /**
103     * Sets the value of the solidFill property.
104     *
105     * @param value
106     *     allowed object is
107     *     {@link CTSolidColorFillProperties }
108     *     
109     */
110    public void setSolidFill(CTSolidColorFillProperties value) {
111        this.solidFill = value;
112    }
113
114    /**
115     * Gets the value of the gradFill property.
116     *
117     * @return
118     *     possible object is
119     *     {@link CTGradientFillProperties }
120     *     
121     */
122    public CTGradientFillProperties getGradFill() {
123        return gradFill;
124    }
125
126    /**
127     * Sets the value of the gradFill property.
128     *
129     * @param value
130     *     allowed object is
131     *     {@link CTGradientFillProperties }
132     *     
133     */
134    public void setGradFill(CTGradientFillProperties value) {
135        this.gradFill = value;
136    }
137
138    /**
139     * Gets the value of the blipFill property.
140     *
141     * @return
142     *     possible object is
143     *     {@link CTBlipFillProperties }
144     *     
145     */
146    public CTBlipFillProperties getBlipFill() {
147        return blipFill;
148    }
149
150    /**
151     * Sets the value of the blipFill property.
152     *
153     * @param value
154     *     allowed object is
155     *     {@link CTBlipFillProperties }
156     *     
157     */
158    public void setBlipFill(CTBlipFillProperties value) {
159        this.blipFill = value;
160    }
161
162    /**
163     * Gets the value of the pattFill property.
164     *
165     * @return
166     *     possible object is
167     *     {@link CTPatternFillProperties }
168     *     
169     */
170    public CTPatternFillProperties getPattFill() {
171        return pattFill;
172    }
173
174    /**
175     * Sets the value of the pattFill property.
176     *
177     * @param value
178     *     allowed object is
179     *     {@link CTPatternFillProperties }
180     *     
181     */
182    public void setPattFill(CTPatternFillProperties value) {
183        this.pattFill = value;
184    }
185
186    /**
187     * Gets the value of the grpFill property.
188     *
189     * @return
190     *     possible object is
191     *     {@link CTGroupFillProperties }
192     *     
193     */
194    public CTGroupFillProperties getGrpFill() {
195        return grpFill;
196    }
197
198    /**
199     * Sets the value of the grpFill property.
200     *
201     * @param value
202     *     allowed object is
203     *     {@link CTGroupFillProperties }
204     *     
205     */
206    public void setGrpFill(CTGroupFillProperties value) {
207        this.grpFill = value;
208    }
209
210}
Note: See TracBrowser for help on using the repository browser.