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

Revision 1041, 4.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.XmlElement;
27import javax.xml.bind.annotation.XmlType;
28
29
30/**
31 * <p>Java class for CT_GvmlShape 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_GvmlShape">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="nvSpPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GvmlShapeNonVisual"/>
41 *         &lt;element name="spPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ShapeProperties"/>
42 *         &lt;element name="txSp" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GvmlTextShape" minOccurs="0"/>
43 *         &lt;element name="style" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ShapeStyle" minOccurs="0"/>
44 *         &lt;element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
45 *       &lt;/sequence>
46 *     &lt;/restriction>
47 *   &lt;/complexContent>
48 * &lt;/complexType>
49 * </pre>
50 *
51 *
52 */
53@XmlAccessorType(XmlAccessType.FIELD)
54@XmlType(name = "CT_GvmlShape", propOrder = {
55    "nvSpPr",
56    "spPr",
57    "txSp",
58    "style",
59    "extLst"
60})
61public class CTGvmlShape {
62
63    @XmlElement(required = true)
64    protected CTGvmlShapeNonVisual nvSpPr;
65    @XmlElement(required = true)
66    protected CTShapeProperties spPr;
67    protected CTGvmlTextShape txSp;
68    protected CTShapeStyle style;
69    protected CTOfficeArtExtensionList extLst;
70
71    /**
72     * Gets the value of the nvSpPr property.
73     *
74     * @return
75     *     possible object is
76     *     {@link CTGvmlShapeNonVisual }
77     *     
78     */
79    public CTGvmlShapeNonVisual getNvSpPr() {
80        return nvSpPr;
81    }
82
83    /**
84     * Sets the value of the nvSpPr property.
85     *
86     * @param value
87     *     allowed object is
88     *     {@link CTGvmlShapeNonVisual }
89     *     
90     */
91    public void setNvSpPr(CTGvmlShapeNonVisual value) {
92        this.nvSpPr = value;
93    }
94
95    /**
96     * Gets the value of the spPr property.
97     *
98     * @return
99     *     possible object is
100     *     {@link CTShapeProperties }
101     *     
102     */
103    public CTShapeProperties getSpPr() {
104        return spPr;
105    }
106
107    /**
108     * Sets the value of the spPr property.
109     *
110     * @param value
111     *     allowed object is
112     *     {@link CTShapeProperties }
113     *     
114     */
115    public void setSpPr(CTShapeProperties value) {
116        this.spPr = value;
117    }
118
119    /**
120     * Gets the value of the txSp property.
121     *
122     * @return
123     *     possible object is
124     *     {@link CTGvmlTextShape }
125     *     
126     */
127    public CTGvmlTextShape getTxSp() {
128        return txSp;
129    }
130
131    /**
132     * Sets the value of the txSp property.
133     *
134     * @param value
135     *     allowed object is
136     *     {@link CTGvmlTextShape }
137     *     
138     */
139    public void setTxSp(CTGvmlTextShape value) {
140        this.txSp = value;
141    }
142
143    /**
144     * Gets the value of the style property.
145     *
146     * @return
147     *     possible object is
148     *     {@link CTShapeStyle }
149     *     
150     */
151    public CTShapeStyle getStyle() {
152        return style;
153    }
154
155    /**
156     * Sets the value of the style property.
157     *
158     * @param value
159     *     allowed object is
160     *     {@link CTShapeStyle }
161     *     
162     */
163    public void setStyle(CTShapeStyle value) {
164        this.style = value;
165    }
166
167    /**
168     * Gets the value of the extLst property.
169     *
170     * @return
171     *     possible object is
172     *     {@link CTOfficeArtExtensionList }
173     *     
174     */
175    public CTOfficeArtExtensionList getExtLst() {
176        return extLst;
177    }
178
179    /**
180     * Sets the value of the extLst property.
181     *
182     * @param value
183     *     allowed object is
184     *     {@link CTOfficeArtExtensionList }
185     *     
186     */
187    public void setExtLst(CTOfficeArtExtensionList value) {
188        this.extLst = value;
189    }
190
191}
Note: See TracBrowser for help on using the repository browser.