//
// 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>
* <complexType name="CT_CP_Geometry">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.microsoft.com/xps/2005/06}PathGeometry"/>
* </sequence>
* </restriction>
* </complexContent>
* </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;
}
}
|