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