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

Revision 1041, 5.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.XmlAttribute;
27import javax.xml.bind.annotation.XmlElement;
28import javax.xml.bind.annotation.XmlType;
29import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
30import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
31
32
33/**
34 * <p>Java class for CT_PolarAdjustHandle complex type.
35 *
36 * <p>The following schema fragment specifies the expected content contained within this class.
37 *
38 * <pre>
39 * &lt;complexType name="CT_PolarAdjustHandle">
40 *   &lt;complexContent>
41 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
42 *       &lt;sequence>
43 *         &lt;element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
44 *       &lt;/sequence>
45 *       &lt;attribute name="gdRefR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
46 *       &lt;attribute name="minR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
47 *       &lt;attribute name="maxR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
48 *       &lt;attribute name="gdRefAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
49 *       &lt;attribute name="minAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
50 *       &lt;attribute name="maxAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
51 *     &lt;/restriction>
52 *   &lt;/complexContent>
53 * &lt;/complexType>
54 * </pre>
55 *
56 *
57 */
58@XmlAccessorType(XmlAccessType.FIELD)
59@XmlType(name = "CT_PolarAdjustHandle", propOrder = {
60    "pos"
61})
62public class CTPolarAdjustHandle {
63
64    @XmlElement(required = true)
65    protected CTAdjPoint2D pos;
66    @XmlAttribute
67    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
68    protected String gdRefR;
69    @XmlAttribute
70    protected String minR;
71    @XmlAttribute
72    protected String maxR;
73    @XmlAttribute
74    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
75    protected String gdRefAng;
76    @XmlAttribute
77    protected String minAng;
78    @XmlAttribute
79    protected String maxAng;
80
81    /**
82     * Gets the value of the pos property.
83     *
84     * @return
85     *     possible object is
86     *     {@link CTAdjPoint2D }
87     *     
88     */
89    public CTAdjPoint2D getPos() {
90        return pos;
91    }
92
93    /**
94     * Sets the value of the pos property.
95     *
96     * @param value
97     *     allowed object is
98     *     {@link CTAdjPoint2D }
99     *     
100     */
101    public void setPos(CTAdjPoint2D value) {
102        this.pos = value;
103    }
104
105    /**
106     * Gets the value of the gdRefR property.
107     *
108     * @return
109     *     possible object is
110     *     {@link String }
111     *     
112     */
113    public String getGdRefR() {
114        return gdRefR;
115    }
116
117    /**
118     * Sets the value of the gdRefR property.
119     *
120     * @param value
121     *     allowed object is
122     *     {@link String }
123     *     
124     */
125    public void setGdRefR(String value) {
126        this.gdRefR = value;
127    }
128
129    /**
130     * Gets the value of the minR property.
131     *
132     * @return
133     *     possible object is
134     *     {@link String }
135     *     
136     */
137    public String getMinR() {
138        return minR;
139    }
140
141    /**
142     * Sets the value of the minR property.
143     *
144     * @param value
145     *     allowed object is
146     *     {@link String }
147     *     
148     */
149    public void setMinR(String value) {
150        this.minR = value;
151    }
152
153    /**
154     * Gets the value of the maxR property.
155     *
156     * @return
157     *     possible object is
158     *     {@link String }
159     *     
160     */
161    public String getMaxR() {
162        return maxR;
163    }
164
165    /**
166     * Sets the value of the maxR property.
167     *
168     * @param value
169     *     allowed object is
170     *     {@link String }
171     *     
172     */
173    public void setMaxR(String value) {
174        this.maxR = value;
175    }
176
177    /**
178     * Gets the value of the gdRefAng property.
179     *
180     * @return
181     *     possible object is
182     *     {@link String }
183     *     
184     */
185    public String getGdRefAng() {
186        return gdRefAng;
187    }
188
189    /**
190     * Sets the value of the gdRefAng property.
191     *
192     * @param value
193     *     allowed object is
194     *     {@link String }
195     *     
196     */
197    public void setGdRefAng(String value) {
198        this.gdRefAng = value;
199    }
200
201    /**
202     * Gets the value of the minAng property.
203     *
204     * @return
205     *     possible object is
206     *     {@link String }
207     *     
208     */
209    public String getMinAng() {
210        return minAng;
211    }
212
213    /**
214     * Sets the value of the minAng property.
215     *
216     * @param value
217     *     allowed object is
218     *     {@link String }
219     *     
220     */
221    public void setMinAng(String value) {
222        this.minAng = value;
223    }
224
225    /**
226     * Gets the value of the maxAng property.
227     *
228     * @return
229     *     possible object is
230     *     {@link String }
231     *     
232     */
233    public String getMaxAng() {
234        return maxAng;
235    }
236
237    /**
238     * Sets the value of the maxAng property.
239     *
240     * @param value
241     *     allowed object is
242     *     {@link String }
243     *     
244     */
245    public void setMaxAng(String value) {
246        this.maxAng = value;
247    }
248
249}
Note: See TracBrowser for help on using the repository browser.