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

Revision 1041, 3.7 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_GeomRect 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_GeomRect">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;attribute name="l" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
40 *       &lt;attribute name="t" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
41 *       &lt;attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
42 *       &lt;attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
43 *     &lt;/restriction>
44 *   &lt;/complexContent>
45 * &lt;/complexType>
46 * </pre>
47 *
48 *
49 */
50@XmlAccessorType(XmlAccessType.FIELD)
51@XmlType(name = "CT_GeomRect")
52public class CTGeomRect {
53
54    @XmlAttribute(required = true)
55    protected String l;
56    @XmlAttribute(required = true)
57    protected String t;
58    @XmlAttribute(required = true)
59    protected String r;
60    @XmlAttribute(required = true)
61    protected String b;
62
63    /**
64     * Gets the value of the l property.
65     *
66     * @return
67     *     possible object is
68     *     {@link String }
69     *     
70     */
71    public String getL() {
72        return l;
73    }
74
75    /**
76     * Sets the value of the l property.
77     *
78     * @param value
79     *     allowed object is
80     *     {@link String }
81     *     
82     */
83    public void setL(String value) {
84        this.l = value;
85    }
86
87    /**
88     * Gets the value of the t property.
89     *
90     * @return
91     *     possible object is
92     *     {@link String }
93     *     
94     */
95    public String getT() {
96        return t;
97    }
98
99    /**
100     * Sets the value of the t property.
101     *
102     * @param value
103     *     allowed object is
104     *     {@link String }
105     *     
106     */
107    public void setT(String value) {
108        this.t = value;
109    }
110
111    /**
112     * Gets the value of the r property.
113     *
114     * @return
115     *     possible object is
116     *     {@link String }
117     *     
118     */
119    public String getR() {
120        return r;
121    }
122
123    /**
124     * Sets the value of the r property.
125     *
126     * @param value
127     *     allowed object is
128     *     {@link String }
129     *     
130     */
131    public void setR(String value) {
132        this.r = value;
133    }
134
135    /**
136     * Gets the value of the b property.
137     *
138     * @return
139     *     possible object is
140     *     {@link String }
141     *     
142     */
143    public String getB() {
144        return b;
145    }
146
147    /**
148     * Sets the value of the b property.
149     *
150     * @param value
151     *     allowed object is
152     *     {@link String }
153     *     
154     */
155    public void setB(String value) {
156        this.b = value;
157    }
158
159}
Note: See TracBrowser for help on using the repository browser.