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