All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.sl.draw.binding.CTCustomGeometry2D Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.sl.draw.binding;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CT_CustomGeometry2D complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CT_CustomGeometry2D">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
 *         <element name="gdLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
 *         <element name="ahLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjustHandleList" minOccurs="0"/>
 *         <element name="cxnLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSiteList" minOccurs="0"/>
 *         <element name="rect" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomRect" minOccurs="0"/>
 *         <element name="pathLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DList"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_CustomGeometry2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = { "avLst", "gdLst", "ahLst", "cxnLst", "rect", "pathLst" }) public class CTCustomGeometry2D { @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main") protected CTGeomGuideList avLst; @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main") protected CTGeomGuideList gdLst; @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main") protected CTAdjustHandleList ahLst; @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main") protected CTConnectionSiteList cxnLst; @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main") protected CTGeomRect rect; @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true) protected CTPath2DList pathLst; /** * Gets the value of the avLst property. * * @return * possible object is * {@link CTGeomGuideList } * */ public CTGeomGuideList getAvLst() { return avLst; } /** * Sets the value of the avLst property. * * @param value * allowed object is * {@link CTGeomGuideList } * */ public void setAvLst(CTGeomGuideList value) { this.avLst = value; } public boolean isSetAvLst() { return (this.avLst!= null); } /** * Gets the value of the gdLst property. * * @return * possible object is * {@link CTGeomGuideList } * */ public CTGeomGuideList getGdLst() { return gdLst; } /** * Sets the value of the gdLst property. * * @param value * allowed object is * {@link CTGeomGuideList } * */ public void setGdLst(CTGeomGuideList value) { this.gdLst = value; } public boolean isSetGdLst() { return (this.gdLst!= null); } /** * Gets the value of the ahLst property. * * @return * possible object is * {@link CTAdjustHandleList } * */ public CTAdjustHandleList getAhLst() { return ahLst; } /** * Sets the value of the ahLst property. * * @param value * allowed object is * {@link CTAdjustHandleList } * */ public void setAhLst(CTAdjustHandleList value) { this.ahLst = value; } public boolean isSetAhLst() { return (this.ahLst!= null); } /** * Gets the value of the cxnLst property. * * @return * possible object is * {@link CTConnectionSiteList } * */ public CTConnectionSiteList getCxnLst() { return cxnLst; } /** * Sets the value of the cxnLst property. * * @param value * allowed object is * {@link CTConnectionSiteList } * */ public void setCxnLst(CTConnectionSiteList value) { this.cxnLst = value; } public boolean isSetCxnLst() { return (this.cxnLst!= null); } /** * Gets the value of the rect property. * * @return * possible object is * {@link CTGeomRect } * */ public CTGeomRect getRect() { return rect; } /** * Sets the value of the rect property. * * @param value * allowed object is * {@link CTGeomRect } * */ public void setRect(CTGeomRect value) { this.rect = value; } public boolean isSetRect() { return (this.rect!= null); } /** * Gets the value of the pathLst property. * * @return * possible object is * {@link CTPath2DList } * */ public CTPath2DList getPathLst() { return pathLst; } /** * Sets the value of the pathLst property. * * @param value * allowed object is * {@link CTPath2DList } * */ public void setPathLst(CTPath2DList value) { this.pathLst = value; } public boolean isSetPathLst() { return (this.pathLst!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy