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

Revision 1041, 3.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_TableBackgroundStyle 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_TableBackgroundStyle">
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_ThemeableFillStyle" minOccurs="0"/>
40 *         &lt;group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ThemeableEffectStyle" minOccurs="0"/>
41 *       &lt;/sequence>
42 *     &lt;/restriction>
43 *   &lt;/complexContent>
44 * &lt;/complexType>
45 * </pre>
46 *
47 *
48 */
49@XmlAccessorType(XmlAccessType.FIELD)
50@XmlType(name = "CT_TableBackgroundStyle", propOrder = {
51    "fill",
52    "fillRef",
53    "effect",
54    "effectRef"
55})
56public class CTTableBackgroundStyle {
57
58    protected CTFillProperties fill;
59    protected CTStyleMatrixReference fillRef;
60    protected CTEffectProperties effect;
61    protected CTStyleMatrixReference effectRef;
62
63    /**
64     * Gets the value of the fill property.
65     *
66     * @return
67     *     possible object is
68     *     {@link CTFillProperties }
69     *     
70     */
71    public CTFillProperties getFill() {
72        return fill;
73    }
74
75    /**
76     * Sets the value of the fill property.
77     *
78     * @param value
79     *     allowed object is
80     *     {@link CTFillProperties }
81     *     
82     */
83    public void setFill(CTFillProperties value) {
84        this.fill = value;
85    }
86
87    /**
88     * Gets the value of the fillRef property.
89     *
90     * @return
91     *     possible object is
92     *     {@link CTStyleMatrixReference }
93     *     
94     */
95    public CTStyleMatrixReference getFillRef() {
96        return fillRef;
97    }
98
99    /**
100     * Sets the value of the fillRef property.
101     *
102     * @param value
103     *     allowed object is
104     *     {@link CTStyleMatrixReference }
105     *     
106     */
107    public void setFillRef(CTStyleMatrixReference value) {
108        this.fillRef = value;
109    }
110
111    /**
112     * Gets the value of the effect property.
113     *
114     * @return
115     *     possible object is
116     *     {@link CTEffectProperties }
117     *     
118     */
119    public CTEffectProperties getEffect() {
120        return effect;
121    }
122
123    /**
124     * Sets the value of the effect property.
125     *
126     * @param value
127     *     allowed object is
128     *     {@link CTEffectProperties }
129     *     
130     */
131    public void setEffect(CTEffectProperties value) {
132        this.effect = value;
133    }
134
135    /**
136     * Gets the value of the effectRef property.
137     *
138     * @return
139     *     possible object is
140     *     {@link CTStyleMatrixReference }
141     *     
142     */
143    public CTStyleMatrixReference getEffectRef() {
144        return effectRef;
145    }
146
147    /**
148     * Sets the value of the effectRef property.
149     *
150     * @param value
151     *     allowed object is
152     *     {@link CTStyleMatrixReference }
153     *     
154     */
155    public void setEffectRef(CTStyleMatrixReference value) {
156        this.effectRef = value;
157    }
158
159}
Note: See TracBrowser for help on using the repository browser.