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

Revision 1041, 7.7 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.XmlElement;
27import javax.xml.bind.annotation.XmlType;
28
29
30/**
31 * <p>Java class for CT_TableCellBorderStyle complex type.
32 *
33 * <p>The following schema fragment specifies the expected content contained within this class.
34 *
35 * <pre>
36 * &lt;complexType name="CT_TableCellBorderStyle">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="left" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
41 *         &lt;element name="right" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
42 *         &lt;element name="top" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
43 *         &lt;element name="bottom" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
44 *         &lt;element name="insideH" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
45 *         &lt;element name="insideV" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
46 *         &lt;element name="tl2br" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
47 *         &lt;element name="tr2bl" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ThemeableLineStyle" minOccurs="0"/>
48 *         &lt;element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
49 *       &lt;/sequence>
50 *     &lt;/restriction>
51 *   &lt;/complexContent>
52 * &lt;/complexType>
53 * </pre>
54 *
55 *
56 */
57@XmlAccessorType(XmlAccessType.FIELD)
58@XmlType(name = "CT_TableCellBorderStyle", propOrder = {
59    "left",
60    "right",
61    "top",
62    "bottom",
63    "insideH",
64    "insideV",
65    "tl2Br",
66    "tr2Bl",
67    "extLst"
68})
69public class CTTableCellBorderStyle {
70
71    protected CTThemeableLineStyle left;
72    protected CTThemeableLineStyle right;
73    protected CTThemeableLineStyle top;
74    protected CTThemeableLineStyle bottom;
75    protected CTThemeableLineStyle insideH;
76    protected CTThemeableLineStyle insideV;
77    @XmlElement(name = "tl2br")
78    protected CTThemeableLineStyle tl2Br;
79    @XmlElement(name = "tr2bl")
80    protected CTThemeableLineStyle tr2Bl;
81    protected CTOfficeArtExtensionList extLst;
82
83    /**
84     * Gets the value of the left property.
85     *
86     * @return
87     *     possible object is
88     *     {@link CTThemeableLineStyle }
89     *     
90     */
91    public CTThemeableLineStyle getLeft() {
92        return left;
93    }
94
95    /**
96     * Sets the value of the left property.
97     *
98     * @param value
99     *     allowed object is
100     *     {@link CTThemeableLineStyle }
101     *     
102     */
103    public void setLeft(CTThemeableLineStyle value) {
104        this.left = value;
105    }
106
107    /**
108     * Gets the value of the right property.
109     *
110     * @return
111     *     possible object is
112     *     {@link CTThemeableLineStyle }
113     *     
114     */
115    public CTThemeableLineStyle getRight() {
116        return right;
117    }
118
119    /**
120     * Sets the value of the right property.
121     *
122     * @param value
123     *     allowed object is
124     *     {@link CTThemeableLineStyle }
125     *     
126     */
127    public void setRight(CTThemeableLineStyle value) {
128        this.right = value;
129    }
130
131    /**
132     * Gets the value of the top property.
133     *
134     * @return
135     *     possible object is
136     *     {@link CTThemeableLineStyle }
137     *     
138     */
139    public CTThemeableLineStyle getTop() {
140        return top;
141    }
142
143    /**
144     * Sets the value of the top property.
145     *
146     * @param value
147     *     allowed object is
148     *     {@link CTThemeableLineStyle }
149     *     
150     */
151    public void setTop(CTThemeableLineStyle value) {
152        this.top = value;
153    }
154
155    /**
156     * Gets the value of the bottom property.
157     *
158     * @return
159     *     possible object is
160     *     {@link CTThemeableLineStyle }
161     *     
162     */
163    public CTThemeableLineStyle getBottom() {
164        return bottom;
165    }
166
167    /**
168     * Sets the value of the bottom property.
169     *
170     * @param value
171     *     allowed object is
172     *     {@link CTThemeableLineStyle }
173     *     
174     */
175    public void setBottom(CTThemeableLineStyle value) {
176        this.bottom = value;
177    }
178
179    /**
180     * Gets the value of the insideH property.
181     *
182     * @return
183     *     possible object is
184     *     {@link CTThemeableLineStyle }
185     *     
186     */
187    public CTThemeableLineStyle getInsideH() {
188        return insideH;
189    }
190
191    /**
192     * Sets the value of the insideH property.
193     *
194     * @param value
195     *     allowed object is
196     *     {@link CTThemeableLineStyle }
197     *     
198     */
199    public void setInsideH(CTThemeableLineStyle value) {
200        this.insideH = value;
201    }
202
203    /**
204     * Gets the value of the insideV property.
205     *
206     * @return
207     *     possible object is
208     *     {@link CTThemeableLineStyle }
209     *     
210     */
211    public CTThemeableLineStyle getInsideV() {
212        return insideV;
213    }
214
215    /**
216     * Sets the value of the insideV property.
217     *
218     * @param value
219     *     allowed object is
220     *     {@link CTThemeableLineStyle }
221     *     
222     */
223    public void setInsideV(CTThemeableLineStyle value) {
224        this.insideV = value;
225    }
226
227    /**
228     * Gets the value of the tl2Br property.
229     *
230     * @return
231     *     possible object is
232     *     {@link CTThemeableLineStyle }
233     *     
234     */
235    public CTThemeableLineStyle getTl2Br() {
236        return tl2Br;
237    }
238
239    /**
240     * Sets the value of the tl2Br property.
241     *
242     * @param value
243     *     allowed object is
244     *     {@link CTThemeableLineStyle }
245     *     
246     */
247    public void setTl2Br(CTThemeableLineStyle value) {
248        this.tl2Br = value;
249    }
250
251    /**
252     * Gets the value of the tr2Bl property.
253     *
254     * @return
255     *     possible object is
256     *     {@link CTThemeableLineStyle }
257     *     
258     */
259    public CTThemeableLineStyle getTr2Bl() {
260        return tr2Bl;
261    }
262
263    /**
264     * Sets the value of the tr2Bl property.
265     *
266     * @param value
267     *     allowed object is
268     *     {@link CTThemeableLineStyle }
269     *     
270     */
271    public void setTr2Bl(CTThemeableLineStyle value) {
272        this.tr2Bl = value;
273    }
274
275    /**
276     * Gets the value of the extLst property.
277     *
278     * @return
279     *     possible object is
280     *     {@link CTOfficeArtExtensionList }
281     *     
282     */
283    public CTOfficeArtExtensionList getExtLst() {
284        return extLst;
285    }
286
287    /**
288     * Sets the value of the extLst property.
289     *
290     * @param value
291     *     allowed object is
292     *     {@link CTOfficeArtExtensionList }
293     *     
294     */
295    public void setExtLst(CTOfficeArtExtensionList value) {
296        this.extLst = value;
297    }
298
299}
Note: See TracBrowser for help on using the repository browser.