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

Revision 1041, 4.0 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_Backdrop 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_Backdrop">
37 *   &lt;complexContent>
38 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 *       &lt;sequence>
40 *         &lt;element name="anchor" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point3D"/>
41 *         &lt;element name="norm" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Vector3D"/>
42 *         &lt;element name="up" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Vector3D"/>
43 *         &lt;element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
44 *       &lt;/sequence>
45 *     &lt;/restriction>
46 *   &lt;/complexContent>
47 * &lt;/complexType>
48 * </pre>
49 *
50 *
51 */
52@XmlAccessorType(XmlAccessType.FIELD)
53@XmlType(name = "CT_Backdrop", propOrder = {
54    "anchor",
55    "norm",
56    "up",
57    "extLst"
58})
59public class CTBackdrop {
60
61    @XmlElement(required = true)
62    protected CTPoint3D anchor;
63    @XmlElement(required = true)
64    protected CTVector3D norm;
65    @XmlElement(required = true)
66    protected CTVector3D up;
67    protected CTOfficeArtExtensionList extLst;
68
69    /**
70     * Gets the value of the anchor property.
71     *
72     * @return
73     *     possible object is
74     *     {@link CTPoint3D }
75     *     
76     */
77    public CTPoint3D getAnchor() {
78        return anchor;
79    }
80
81    /**
82     * Sets the value of the anchor property.
83     *
84     * @param value
85     *     allowed object is
86     *     {@link CTPoint3D }
87     *     
88     */
89    public void setAnchor(CTPoint3D value) {
90        this.anchor = value;
91    }
92
93    /**
94     * Gets the value of the norm property.
95     *
96     * @return
97     *     possible object is
98     *     {@link CTVector3D }
99     *     
100     */
101    public CTVector3D getNorm() {
102        return norm;
103    }
104
105    /**
106     * Sets the value of the norm property.
107     *
108     * @param value
109     *     allowed object is
110     *     {@link CTVector3D }
111     *     
112     */
113    public void setNorm(CTVector3D value) {
114        this.norm = value;
115    }
116
117    /**
118     * Gets the value of the up property.
119     *
120     * @return
121     *     possible object is
122     *     {@link CTVector3D }
123     *     
124     */
125    public CTVector3D getUp() {
126        return up;
127    }
128
129    /**
130     * Sets the value of the up property.
131     *
132     * @param value
133     *     allowed object is
134     *     {@link CTVector3D }
135     *     
136     */
137    public void setUp(CTVector3D value) {
138        this.up = value;
139    }
140
141    /**
142     * Gets the value of the extLst property.
143     *
144     * @return
145     *     possible object is
146     *     {@link CTOfficeArtExtensionList }
147     *     
148     */
149    public CTOfficeArtExtensionList getExtLst() {
150        return extLst;
151    }
152
153    /**
154     * Sets the value of the extLst property.
155     *
156     * @param value
157     *     allowed object is
158     *     {@link CTOfficeArtExtensionList }
159     *     
160     */
161    public void setExtLst(CTOfficeArtExtensionList value) {
162        this.extLst = value;
163    }
164
165}
Note: See TracBrowser for help on using the repository browser.