source: trunk/docx4j/src/main/java/org/docx4j/dml/CTGvmlPicture.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_GvmlPicture 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_GvmlPicture">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="nvPicPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GvmlPictureNonVisual"/>
41 *         &lt;element name="blipFill" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_BlipFillProperties"/>
42 *         &lt;element name="spPr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ShapeProperties"/>
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_GvmlPicture", propOrder = {
55    "nvPicPr",
56    "blipFill",
57    "spPr",
58    "style",
59    "extLst"
60})
61public class CTGvmlPicture {
62
63    @XmlElement(required = true)
64    protected CTGvmlPictureNonVisual nvPicPr;
65    @XmlElement(required = true)
66    protected CTBlipFillProperties blipFill;
67    @XmlElement(required = true)
68    protected CTShapeProperties spPr;
69    protected CTShapeStyle style;
70    protected CTOfficeArtExtensionList extLst;
71
72    /**
73     * Gets the value of the nvPicPr property.
74     *
75     * @return
76     *     possible object is
77     *     {@link CTGvmlPictureNonVisual }
78     *     
79     */
80    public CTGvmlPictureNonVisual getNvPicPr() {
81        return nvPicPr;
82    }
83
84    /**
85     * Sets the value of the nvPicPr property.
86     *
87     * @param value
88     *     allowed object is
89     *     {@link CTGvmlPictureNonVisual }
90     *     
91     */
92    public void setNvPicPr(CTGvmlPictureNonVisual value) {
93        this.nvPicPr = value;
94    }
95
96    /**
97     * Gets the value of the blipFill property.
98     *
99     * @return
100     *     possible object is
101     *     {@link CTBlipFillProperties }
102     *     
103     */
104    public CTBlipFillProperties getBlipFill() {
105        return blipFill;
106    }
107
108    /**
109     * Sets the value of the blipFill property.
110     *
111     * @param value
112     *     allowed object is
113     *     {@link CTBlipFillProperties }
114     *     
115     */
116    public void setBlipFill(CTBlipFillProperties value) {
117        this.blipFill = value;
118    }
119
120    /**
121     * Gets the value of the spPr property.
122     *
123     * @return
124     *     possible object is
125     *     {@link CTShapeProperties }
126     *     
127     */
128    public CTShapeProperties getSpPr() {
129        return spPr;
130    }
131
132    /**
133     * Sets the value of the spPr property.
134     *
135     * @param value
136     *     allowed object is
137     *     {@link CTShapeProperties }
138     *     
139     */
140    public void setSpPr(CTShapeProperties value) {
141        this.spPr = 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.