| 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 | |
|---|
| 22 | package org.docx4j.dml; |
|---|
| 23 | |
|---|
| 24 | import javax.xml.bind.annotation.XmlAccessType; |
|---|
| 25 | import javax.xml.bind.annotation.XmlAccessorType; |
|---|
| 26 | import javax.xml.bind.annotation.XmlAttribute; |
|---|
| 27 | import javax.xml.bind.annotation.XmlType; |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | /** |
|---|
| 31 | * <p>Java class for CT_GraphicalObjectFrameLocking complex type. |
|---|
| 32 | * |
|---|
| 33 | * <p>The following schema fragment specifies the expected content contained within this class. |
|---|
| 34 | * |
|---|
| 35 | * <pre> |
|---|
| 36 | * <complexType name="CT_GraphicalObjectFrameLocking"> |
|---|
| 37 | * <complexContent> |
|---|
| 38 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|---|
| 39 | * <sequence> |
|---|
| 40 | * <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/> |
|---|
| 41 | * </sequence> |
|---|
| 42 | * <attribute name="noGrp" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 43 | * <attribute name="noDrilldown" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 44 | * <attribute name="noSelect" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 45 | * <attribute name="noChangeAspect" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 46 | * <attribute name="noMove" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 47 | * <attribute name="noResize" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> |
|---|
| 48 | * </restriction> |
|---|
| 49 | * </complexContent> |
|---|
| 50 | * </complexType> |
|---|
| 51 | * </pre> |
|---|
| 52 | * |
|---|
| 53 | * |
|---|
| 54 | */ |
|---|
| 55 | @XmlAccessorType(XmlAccessType.FIELD) |
|---|
| 56 | @XmlType(name = "CT_GraphicalObjectFrameLocking", propOrder = { |
|---|
| 57 | "extLst" |
|---|
| 58 | }) |
|---|
| 59 | public class CTGraphicalObjectFrameLocking { |
|---|
| 60 | |
|---|
| 61 | protected CTOfficeArtExtensionList extLst; |
|---|
| 62 | @XmlAttribute |
|---|
| 63 | protected Boolean noGrp; |
|---|
| 64 | @XmlAttribute |
|---|
| 65 | protected Boolean noDrilldown; |
|---|
| 66 | @XmlAttribute |
|---|
| 67 | protected Boolean noSelect; |
|---|
| 68 | @XmlAttribute |
|---|
| 69 | protected Boolean noChangeAspect; |
|---|
| 70 | @XmlAttribute |
|---|
| 71 | protected Boolean noMove; |
|---|
| 72 | @XmlAttribute |
|---|
| 73 | protected Boolean noResize; |
|---|
| 74 | |
|---|
| 75 | /** |
|---|
| 76 | * Gets the value of the extLst property. |
|---|
| 77 | * |
|---|
| 78 | * @return |
|---|
| 79 | * possible object is |
|---|
| 80 | * {@link CTOfficeArtExtensionList } |
|---|
| 81 | * |
|---|
| 82 | */ |
|---|
| 83 | public CTOfficeArtExtensionList getExtLst() { |
|---|
| 84 | return extLst; |
|---|
| 85 | } |
|---|
| 86 | |
|---|
| 87 | /** |
|---|
| 88 | * Sets the value of the extLst property. |
|---|
| 89 | * |
|---|
| 90 | * @param value |
|---|
| 91 | * allowed object is |
|---|
| 92 | * {@link CTOfficeArtExtensionList } |
|---|
| 93 | * |
|---|
| 94 | */ |
|---|
| 95 | public void setExtLst(CTOfficeArtExtensionList value) { |
|---|
| 96 | this.extLst = value; |
|---|
| 97 | } |
|---|
| 98 | |
|---|
| 99 | /** |
|---|
| 100 | * Gets the value of the noGrp property. |
|---|
| 101 | * |
|---|
| 102 | * @return |
|---|
| 103 | * possible object is |
|---|
| 104 | * {@link Boolean } |
|---|
| 105 | * |
|---|
| 106 | */ |
|---|
| 107 | public boolean isNoGrp() { |
|---|
| 108 | if (noGrp == null) { |
|---|
| 109 | return false; |
|---|
| 110 | } else { |
|---|
| 111 | return noGrp; |
|---|
| 112 | } |
|---|
| 113 | } |
|---|
| 114 | |
|---|
| 115 | /** |
|---|
| 116 | * Sets the value of the noGrp property. |
|---|
| 117 | * |
|---|
| 118 | * @param value |
|---|
| 119 | * allowed object is |
|---|
| 120 | * {@link Boolean } |
|---|
| 121 | * |
|---|
| 122 | */ |
|---|
| 123 | public void setNoGrp(Boolean value) { |
|---|
| 124 | this.noGrp = value; |
|---|
| 125 | } |
|---|
| 126 | |
|---|
| 127 | /** |
|---|
| 128 | * Gets the value of the noDrilldown property. |
|---|
| 129 | * |
|---|
| 130 | * @return |
|---|
| 131 | * possible object is |
|---|
| 132 | * {@link Boolean } |
|---|
| 133 | * |
|---|
| 134 | */ |
|---|
| 135 | public boolean isNoDrilldown() { |
|---|
| 136 | if (noDrilldown == null) { |
|---|
| 137 | return false; |
|---|
| 138 | } else { |
|---|
| 139 | return noDrilldown; |
|---|
| 140 | } |
|---|
| 141 | } |
|---|
| 142 | |
|---|
| 143 | /** |
|---|
| 144 | * Sets the value of the noDrilldown property. |
|---|
| 145 | * |
|---|
| 146 | * @param value |
|---|
| 147 | * allowed object is |
|---|
| 148 | * {@link Boolean } |
|---|
| 149 | * |
|---|
| 150 | */ |
|---|
| 151 | public void setNoDrilldown(Boolean value) { |
|---|
| 152 | this.noDrilldown = value; |
|---|
| 153 | } |
|---|
| 154 | |
|---|
| 155 | /** |
|---|
| 156 | * Gets the value of the noSelect property. |
|---|
| 157 | * |
|---|
| 158 | * @return |
|---|
| 159 | * possible object is |
|---|
| 160 | * {@link Boolean } |
|---|
| 161 | * |
|---|
| 162 | */ |
|---|
| 163 | public boolean isNoSelect() { |
|---|
| 164 | if (noSelect == null) { |
|---|
| 165 | return false; |
|---|
| 166 | } else { |
|---|
| 167 | return noSelect; |
|---|
| 168 | } |
|---|
| 169 | } |
|---|
| 170 | |
|---|
| 171 | /** |
|---|
| 172 | * Sets the value of the noSelect property. |
|---|
| 173 | * |
|---|
| 174 | * @param value |
|---|
| 175 | * allowed object is |
|---|
| 176 | * {@link Boolean } |
|---|
| 177 | * |
|---|
| 178 | */ |
|---|
| 179 | public void setNoSelect(Boolean value) { |
|---|
| 180 | this.noSelect = value; |
|---|
| 181 | } |
|---|
| 182 | |
|---|
| 183 | /** |
|---|
| 184 | * Gets the value of the noChangeAspect property. |
|---|
| 185 | * |
|---|
| 186 | * @return |
|---|
| 187 | * possible object is |
|---|
| 188 | * {@link Boolean } |
|---|
| 189 | * |
|---|
| 190 | */ |
|---|
| 191 | public boolean isNoChangeAspect() { |
|---|
| 192 | if (noChangeAspect == null) { |
|---|
| 193 | return false; |
|---|
| 194 | } else { |
|---|
| 195 | return noChangeAspect; |
|---|
| 196 | } |
|---|
| 197 | } |
|---|
| 198 | |
|---|
| 199 | /** |
|---|
| 200 | * Sets the value of the noChangeAspect property. |
|---|
| 201 | * |
|---|
| 202 | * @param value |
|---|
| 203 | * allowed object is |
|---|
| 204 | * {@link Boolean } |
|---|
| 205 | * |
|---|
| 206 | */ |
|---|
| 207 | public void setNoChangeAspect(Boolean value) { |
|---|
| 208 | this.noChangeAspect = value; |
|---|
| 209 | } |
|---|
| 210 | |
|---|
| 211 | /** |
|---|
| 212 | * Gets the value of the noMove property. |
|---|
| 213 | * |
|---|
| 214 | * @return |
|---|
| 215 | * possible object is |
|---|
| 216 | * {@link Boolean } |
|---|
| 217 | * |
|---|
| 218 | */ |
|---|
| 219 | public boolean isNoMove() { |
|---|
| 220 | if (noMove == null) { |
|---|
| 221 | return false; |
|---|
| 222 | } else { |
|---|
| 223 | return noMove; |
|---|
| 224 | } |
|---|
| 225 | } |
|---|
| 226 | |
|---|
| 227 | /** |
|---|
| 228 | * Sets the value of the noMove property. |
|---|
| 229 | * |
|---|
| 230 | * @param value |
|---|
| 231 | * allowed object is |
|---|
| 232 | * {@link Boolean } |
|---|
| 233 | * |
|---|
| 234 | */ |
|---|
| 235 | public void setNoMove(Boolean value) { |
|---|
| 236 | this.noMove = value; |
|---|
| 237 | } |
|---|
| 238 | |
|---|
| 239 | /** |
|---|
| 240 | * Gets the value of the noResize property. |
|---|
| 241 | * |
|---|
| 242 | * @return |
|---|
| 243 | * possible object is |
|---|
| 244 | * {@link Boolean } |
|---|
| 245 | * |
|---|
| 246 | */ |
|---|
| 247 | public boolean isNoResize() { |
|---|
| 248 | if (noResize == null) { |
|---|
| 249 | return false; |
|---|
| 250 | } else { |
|---|
| 251 | return noResize; |
|---|
| 252 | } |
|---|
| 253 | } |
|---|
| 254 | |
|---|
| 255 | /** |
|---|
| 256 | * Sets the value of the noResize property. |
|---|
| 257 | * |
|---|
| 258 | * @param value |
|---|
| 259 | * allowed object is |
|---|
| 260 | * {@link Boolean } |
|---|
| 261 | * |
|---|
| 262 | */ |
|---|
| 263 | public void setNoResize(Boolean value) { |
|---|
| 264 | this.noResize = value; |
|---|
| 265 | } |
|---|
| 266 | |
|---|
| 267 | } |
|---|