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

Revision 1041, 8.4 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.XmlAttribute;
27import javax.xml.bind.annotation.XmlType;
28
29
30/**
31 * <p>Java class for CT_ConnectorLocking 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_ConnectorLocking">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
41 *       &lt;/sequence>
42 *       &lt;attGroup ref="{http://schemas.openxmlformats.org/drawingml/2006/main}AG_Locking"/>
43 *     &lt;/restriction>
44 *   &lt;/complexContent>
45 * &lt;/complexType>
46 * </pre>
47 *
48 *
49 */
50@XmlAccessorType(XmlAccessType.FIELD)
51@XmlType(name = "CT_ConnectorLocking", propOrder = {
52    "extLst"
53})
54public class CTConnectorLocking {
55
56    protected CTOfficeArtExtensionList extLst;
57    @XmlAttribute
58    protected Boolean noGrp;
59    @XmlAttribute
60    protected Boolean noSelect;
61    @XmlAttribute
62    protected Boolean noRot;
63    @XmlAttribute
64    protected Boolean noChangeAspect;
65    @XmlAttribute
66    protected Boolean noMove;
67    @XmlAttribute
68    protected Boolean noResize;
69    @XmlAttribute
70    protected Boolean noEditPoints;
71    @XmlAttribute
72    protected Boolean noAdjustHandles;
73    @XmlAttribute
74    protected Boolean noChangeArrowheads;
75    @XmlAttribute
76    protected Boolean noChangeShapeType;
77
78    /**
79     * Gets the value of the extLst property.
80     *
81     * @return
82     *     possible object is
83     *     {@link CTOfficeArtExtensionList }
84     *     
85     */
86    public CTOfficeArtExtensionList getExtLst() {
87        return extLst;
88    }
89
90    /**
91     * Sets the value of the extLst property.
92     *
93     * @param value
94     *     allowed object is
95     *     {@link CTOfficeArtExtensionList }
96     *     
97     */
98    public void setExtLst(CTOfficeArtExtensionList value) {
99        this.extLst = value;
100    }
101
102    /**
103     * Gets the value of the noGrp property.
104     *
105     * @return
106     *     possible object is
107     *     {@link Boolean }
108     *     
109     */
110    public boolean isNoGrp() {
111        if (noGrp == null) {
112            return false;
113        } else {
114            return noGrp;
115        }
116    }
117
118    /**
119     * Sets the value of the noGrp property.
120     *
121     * @param value
122     *     allowed object is
123     *     {@link Boolean }
124     *     
125     */
126    public void setNoGrp(Boolean value) {
127        this.noGrp = value;
128    }
129
130    /**
131     * Gets the value of the noSelect property.
132     *
133     * @return
134     *     possible object is
135     *     {@link Boolean }
136     *     
137     */
138    public boolean isNoSelect() {
139        if (noSelect == null) {
140            return false;
141        } else {
142            return noSelect;
143        }
144    }
145
146    /**
147     * Sets the value of the noSelect property.
148     *
149     * @param value
150     *     allowed object is
151     *     {@link Boolean }
152     *     
153     */
154    public void setNoSelect(Boolean value) {
155        this.noSelect = value;
156    }
157
158    /**
159     * Gets the value of the noRot property.
160     *
161     * @return
162     *     possible object is
163     *     {@link Boolean }
164     *     
165     */
166    public boolean isNoRot() {
167        if (noRot == null) {
168            return false;
169        } else {
170            return noRot;
171        }
172    }
173
174    /**
175     * Sets the value of the noRot property.
176     *
177     * @param value
178     *     allowed object is
179     *     {@link Boolean }
180     *     
181     */
182    public void setNoRot(Boolean value) {
183        this.noRot = value;
184    }
185
186    /**
187     * Gets the value of the noChangeAspect property.
188     *
189     * @return
190     *     possible object is
191     *     {@link Boolean }
192     *     
193     */
194    public boolean isNoChangeAspect() {
195        if (noChangeAspect == null) {
196            return false;
197        } else {
198            return noChangeAspect;
199        }
200    }
201
202    /**
203     * Sets the value of the noChangeAspect property.
204     *
205     * @param value
206     *     allowed object is
207     *     {@link Boolean }
208     *     
209     */
210    public void setNoChangeAspect(Boolean value) {
211        this.noChangeAspect = value;
212    }
213
214    /**
215     * Gets the value of the noMove property.
216     *
217     * @return
218     *     possible object is
219     *     {@link Boolean }
220     *     
221     */
222    public boolean isNoMove() {
223        if (noMove == null) {
224            return false;
225        } else {
226            return noMove;
227        }
228    }
229
230    /**
231     * Sets the value of the noMove property.
232     *
233     * @param value
234     *     allowed object is
235     *     {@link Boolean }
236     *     
237     */
238    public void setNoMove(Boolean value) {
239        this.noMove = value;
240    }
241
242    /**
243     * Gets the value of the noResize property.
244     *
245     * @return
246     *     possible object is
247     *     {@link Boolean }
248     *     
249     */
250    public boolean isNoResize() {
251        if (noResize == null) {
252            return false;
253        } else {
254            return noResize;
255        }
256    }
257
258    /**
259     * Sets the value of the noResize property.
260     *
261     * @param value
262     *     allowed object is
263     *     {@link Boolean }
264     *     
265     */
266    public void setNoResize(Boolean value) {
267        this.noResize = value;
268    }
269
270    /**
271     * Gets the value of the noEditPoints property.
272     *
273     * @return
274     *     possible object is
275     *     {@link Boolean }
276     *     
277     */
278    public boolean isNoEditPoints() {
279        if (noEditPoints == null) {
280            return false;
281        } else {
282            return noEditPoints;
283        }
284    }
285
286    /**
287     * Sets the value of the noEditPoints property.
288     *
289     * @param value
290     *     allowed object is
291     *     {@link Boolean }
292     *     
293     */
294    public void setNoEditPoints(Boolean value) {
295        this.noEditPoints = value;
296    }
297
298    /**
299     * Gets the value of the noAdjustHandles property.
300     *
301     * @return
302     *     possible object is
303     *     {@link Boolean }
304     *     
305     */
306    public boolean isNoAdjustHandles() {
307        if (noAdjustHandles == null) {
308            return false;
309        } else {
310            return noAdjustHandles;
311        }
312    }
313
314    /**
315     * Sets the value of the noAdjustHandles property.
316     *
317     * @param value
318     *     allowed object is
319     *     {@link Boolean }
320     *     
321     */
322    public void setNoAdjustHandles(Boolean value) {
323        this.noAdjustHandles = value;
324    }
325
326    /**
327     * Gets the value of the noChangeArrowheads property.
328     *
329     * @return
330     *     possible object is
331     *     {@link Boolean }
332     *     
333     */
334    public boolean isNoChangeArrowheads() {
335        if (noChangeArrowheads == null) {
336            return false;
337        } else {
338            return noChangeArrowheads;
339        }
340    }
341
342    /**
343     * Sets the value of the noChangeArrowheads property.
344     *
345     * @param value
346     *     allowed object is
347     *     {@link Boolean }
348     *     
349     */
350    public void setNoChangeArrowheads(Boolean value) {
351        this.noChangeArrowheads = value;
352    }
353
354    /**
355     * Gets the value of the noChangeShapeType property.
356     *
357     * @return
358     *     possible object is
359     *     {@link Boolean }
360     *     
361     */
362    public boolean isNoChangeShapeType() {
363        if (noChangeShapeType == null) {
364            return false;
365        } else {
366            return noChangeShapeType;
367        }
368    }
369
370    /**
371     * Sets the value of the noChangeShapeType property.
372     *
373     * @param value
374     *     allowed object is
375     *     {@link Boolean }
376     *     
377     */
378    public void setNoChangeShapeType(Boolean value) {
379        this.noChangeShapeType = value;
380    }
381
382}
Note: See TracBrowser for help on using the repository browser.