CTCPGeometry.java :  » XML » java-axp » javaaxp » core » service » impl » document » jaxb » Java Open Source

Java Open Source » XML » java axp 
java axp » javaaxp » core » service » impl » document » jaxb » CTCPGeometry.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2006.10.23 at 11:22:55 PM EDT 
//


package javaaxp.core.service.impl.document.jaxb;

import javaaxp.core.service.model.document.page.IGeometry;
import javaaxp.core.service.model.document.page.IPathGeometry;

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


/**
 * <p>Java class for CT_CP_Geometry complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="CT_CP_Geometry">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element ref="{http://schemas.microsoft.com/xps/2005/06}PathGeometry"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CT_CP_Geometry", propOrder = {
    "pathGeometry"
})
public class CTCPGeometry implements IGeometry {

    @XmlElement(name = "PathGeometry", required = true)
    protected CTPathGeometry pathGeometry;

    /* (non-Javadoc)
   * @see xps.document.jaxb.IGeometry#getPathGeometry()
   */
    public IPathGeometry getPathGeometry() {
        return pathGeometry;
    }

    /**
     * Sets the value of the pathGeometry property.
     * 
     * @param value
     *     allowed object is
     *     {@link CTPathGeometry }
     *     
     */
    public void setPathGeometry(CTPathGeometry value) {
        this.pathGeometry = value;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.