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

Revision 1041, 5.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.XmlElement;
27import javax.xml.bind.annotation.XmlType;
28
29
30/**
31 * <p>Java class for CT_CustomGeometry2D 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_CustomGeometry2D">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
41 *         &lt;element name="gdLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
42 *         &lt;element name="ahLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjustHandleList" minOccurs="0"/>
43 *         &lt;element name="cxnLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSiteList" minOccurs="0"/>
44 *         &lt;element name="rect" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomRect" minOccurs="0"/>
45 *         &lt;element name="pathLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DList"/>
46 *       &lt;/sequence>
47 *     &lt;/restriction>
48 *   &lt;/complexContent>
49 * &lt;/complexType>
50 * </pre>
51 *
52 *
53 */
54@XmlAccessorType(XmlAccessType.FIELD)
55@XmlType(name = "CT_CustomGeometry2D", propOrder = {
56    "avLst",
57    "gdLst",
58    "ahLst",
59    "cxnLst",
60    "rect",
61    "pathLst"
62})
63public class CTCustomGeometry2D {
64
65    protected CTGeomGuideList avLst;
66    protected CTGeomGuideList gdLst;
67    protected CTAdjustHandleList ahLst;
68    protected CTConnectionSiteList cxnLst;
69    protected CTGeomRect rect;
70    @XmlElement(required = true)
71    protected CTPath2DList pathLst;
72
73    /**
74     * Gets the value of the avLst property.
75     *
76     * @return
77     *     possible object is
78     *     {@link CTGeomGuideList }
79     *     
80     */
81    public CTGeomGuideList getAvLst() {
82        return avLst;
83    }
84
85    /**
86     * Sets the value of the avLst property.
87     *
88     * @param value
89     *     allowed object is
90     *     {@link CTGeomGuideList }
91     *     
92     */
93    public void setAvLst(CTGeomGuideList value) {
94        this.avLst = value;
95    }
96
97    /**
98     * Gets the value of the gdLst property.
99     *
100     * @return
101     *     possible object is
102     *     {@link CTGeomGuideList }
103     *     
104     */
105    public CTGeomGuideList getGdLst() {
106        return gdLst;
107    }
108
109    /**
110     * Sets the value of the gdLst property.
111     *
112     * @param value
113     *     allowed object is
114     *     {@link CTGeomGuideList }
115     *     
116     */
117    public void setGdLst(CTGeomGuideList value) {
118        this.gdLst = value;
119    }
120
121    /**
122     * Gets the value of the ahLst property.
123     *
124     * @return
125     *     possible object is
126     *     {@link CTAdjustHandleList }
127     *     
128     */
129    public CTAdjustHandleList getAhLst() {
130        return ahLst;
131    }
132
133    /**
134     * Sets the value of the ahLst property.
135     *
136     * @param value
137     *     allowed object is
138     *     {@link CTAdjustHandleList }
139     *     
140     */
141    public void setAhLst(CTAdjustHandleList value) {
142        this.ahLst = value;
143    }
144
145    /**
146     * Gets the value of the cxnLst property.
147     *
148     * @return
149     *     possible object is
150     *     {@link CTConnectionSiteList }
151     *     
152     */
153    public CTConnectionSiteList getCxnLst() {
154        return cxnLst;
155    }
156
157    /**
158     * Sets the value of the cxnLst property.
159     *
160     * @param value
161     *     allowed object is
162     *     {@link CTConnectionSiteList }
163     *     
164     */
165    public void setCxnLst(CTConnectionSiteList value) {
166        this.cxnLst = value;
167    }
168
169    /**
170     * Gets the value of the rect property.
171     *
172     * @return
173     *     possible object is
174     *     {@link CTGeomRect }
175     *     
176     */
177    public CTGeomRect getRect() {
178        return rect;
179    }
180
181    /**
182     * Sets the value of the rect property.
183     *
184     * @param value
185     *     allowed object is
186     *     {@link CTGeomRect }
187     *     
188     */
189    public void setRect(CTGeomRect value) {
190        this.rect = value;
191    }
192
193    /**
194     * Gets the value of the pathLst property.
195     *
196     * @return
197     *     possible object is
198     *     {@link CTPath2DList }
199     *     
200     */
201    public CTPath2DList getPathLst() {
202        return pathLst;
203    }
204
205    /**
206     * Sets the value of the pathLst property.
207     *
208     * @param value
209     *     allowed object is
210     *     {@link CTPath2DList }
211     *     
212     */
213    public void setPathLst(CTPath2DList value) {
214        this.pathLst = value;
215    }
216
217}
Note: See TracBrowser for help on using the repository browser.