| 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.XmlType; |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | /** |
|---|
| 30 | * <p>Java class for CT_EffectProperties complex type. |
|---|
| 31 | * |
|---|
| 32 | * <p>The following schema fragment specifies the expected content contained within this class. |
|---|
| 33 | * |
|---|
| 34 | * <pre> |
|---|
| 35 | * <complexType name="CT_EffectProperties"> |
|---|
| 36 | * <complexContent> |
|---|
| 37 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|---|
| 38 | * <sequence> |
|---|
| 39 | * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_EffectProperties"/> |
|---|
| 40 | * </sequence> |
|---|
| 41 | * </restriction> |
|---|
| 42 | * </complexContent> |
|---|
| 43 | * </complexType> |
|---|
| 44 | * </pre> |
|---|
| 45 | * |
|---|
| 46 | * |
|---|
| 47 | */ |
|---|
| 48 | @XmlAccessorType(XmlAccessType.FIELD) |
|---|
| 49 | @XmlType(name = "CT_EffectProperties", propOrder = { |
|---|
| 50 | "effectLst", |
|---|
| 51 | "effectDag" |
|---|
| 52 | }) |
|---|
| 53 | public class CTEffectProperties { |
|---|
| 54 | |
|---|
| 55 | protected CTEffectList effectLst; |
|---|
| 56 | protected CTEffectContainer effectDag; |
|---|
| 57 | |
|---|
| 58 | /** |
|---|
| 59 | * Gets the value of the effectLst property. |
|---|
| 60 | * |
|---|
| 61 | * @return |
|---|
| 62 | * possible object is |
|---|
| 63 | * {@link CTEffectList } |
|---|
| 64 | * |
|---|
| 65 | */ |
|---|
| 66 | public CTEffectList getEffectLst() { |
|---|
| 67 | return effectLst; |
|---|
| 68 | } |
|---|
| 69 | |
|---|
| 70 | /** |
|---|
| 71 | * Sets the value of the effectLst property. |
|---|
| 72 | * |
|---|
| 73 | * @param value |
|---|
| 74 | * allowed object is |
|---|
| 75 | * {@link CTEffectList } |
|---|
| 76 | * |
|---|
| 77 | */ |
|---|
| 78 | public void setEffectLst(CTEffectList value) { |
|---|
| 79 | this.effectLst = value; |
|---|
| 80 | } |
|---|
| 81 | |
|---|
| 82 | /** |
|---|
| 83 | * Gets the value of the effectDag property. |
|---|
| 84 | * |
|---|
| 85 | * @return |
|---|
| 86 | * possible object is |
|---|
| 87 | * {@link CTEffectContainer } |
|---|
| 88 | * |
|---|
| 89 | */ |
|---|
| 90 | public CTEffectContainer getEffectDag() { |
|---|
| 91 | return effectDag; |
|---|
| 92 | } |
|---|
| 93 | |
|---|
| 94 | /** |
|---|
| 95 | * Sets the value of the effectDag property. |
|---|
| 96 | * |
|---|
| 97 | * @param value |
|---|
| 98 | * allowed object is |
|---|
| 99 | * {@link CTEffectContainer } |
|---|
| 100 | * |
|---|
| 101 | */ |
|---|
| 102 | public void setEffectDag(CTEffectContainer value) { |
|---|
| 103 | this.effectDag = value; |
|---|
| 104 | } |
|---|
| 105 | |
|---|
| 106 | } |
|---|